Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
678c31f1
Commit
678c31f1
authored
Jul 05, 2017
by
Michael Goderbauer
Committed by
GitHub
Jul 05, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fail doctor check "Flutter" if sub-check fails (#11087)
See
https://github.com/flutter/flutter/issues/11051
parent
1b20dbc6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
doctor.dart
packages/flutter_tools/lib/src/doctor.dart
+2
-1
No files found.
packages/flutter_tools/lib/src/doctor.dart
View file @
678c31f1
...
@@ -193,7 +193,7 @@ class _FlutterValidator extends DoctorValidator {
...
@@ -193,7 +193,7 @@ class _FlutterValidator extends DoctorValidator {
@override
@override
Future
<
ValidationResult
>
validate
()
async
{
Future
<
ValidationResult
>
validate
()
async
{
final
List
<
ValidationMessage
>
messages
=
<
ValidationMessage
>[];
final
List
<
ValidationMessage
>
messages
=
<
ValidationMessage
>[];
final
ValidationType
valid
=
ValidationType
.
installed
;
ValidationType
valid
=
ValidationType
.
installed
;
final
FlutterVersion
version
=
FlutterVersion
.
instance
;
final
FlutterVersion
version
=
FlutterVersion
.
instance
;
...
@@ -215,6 +215,7 @@ class _FlutterValidator extends DoctorValidator {
...
@@ -215,6 +215,7 @@ class _FlutterValidator extends DoctorValidator {
if
(!
_genSnapshotRuns
(
genSnapshotPath
))
{
if
(!
_genSnapshotRuns
(
genSnapshotPath
))
{
messages
.
add
(
new
ValidationMessage
.
error
(
'Downloaded executables cannot execute '
messages
.
add
(
new
ValidationMessage
.
error
(
'Downloaded executables cannot execute '
'on host (see https://github.com/flutter/flutter/issues/6207 for more information)'
));
'on host (see https://github.com/flutter/flutter/issues/6207 for more information)'
));
valid
=
ValidationType
.
partial
;
}
}
return
new
ValidationResult
(
valid
,
messages
,
return
new
ValidationResult
(
valid
,
messages
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment