[flutter_tools] process exception during linux_doctor is handled#100159
[flutter_tools] process exception during linux_doctor is handled#100159fluttergithubbot merged 3 commits intoflutter:masterfrom
Conversation
| // Use of this source code is governed by a BSD-style license that can be | ||
| // found in the LICENSE file. | ||
|
|
||
| import 'dart:io' show ProcessException; |
There was a problem hiding this comment.
Importing dart:io is banned in the tool (I'm pretty sure analysis will catch this). You can import this class via: https://github.com/flutter/flutter/blob/master/packages/flutter_tools/lib/src/base/io.dart#L92
There was a problem hiding this comment.
Interesting, analysis passed. I wonder if we only validate that for non-test code?
|
Note, if you put "Fixes #99944" in your description, GitHub will link the two, and once the bot merges the PR GitHub will auto-close the issue. |
| } on ArgumentError { | ||
| // ignore error. | ||
| } | ||
| on ProcessException { |
There was a problem hiding this comment.
nit this should be on the previous line
I see you updated the title. It looks like only the description gets the special GitHub parsing magic. |
christopherfujino
left a comment
There was a problem hiding this comment.
LGTM barring the style nit
Fixes #99944
Pre-launch Checklist
///).