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
bb1dea74
Commit
bb1dea74
authored
Mar 03, 2017
by
Michael Goderbauer
Committed by
GitHub
Mar 03, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
change messaging around Windows (#8549)
parent
e4f586d2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
9 deletions
+7
-9
test.dart
packages/flutter_tools/lib/src/commands/test.dart
+7
-0
doctor.dart
packages/flutter_tools/lib/src/doctor.dart
+0
-9
No files found.
packages/flutter_tools/lib/src/commands/test.dart
View file @
bb1dea74
...
...
@@ -156,6 +156,13 @@ class TestCommand extends FlutterCommand {
@override
Future
<
Null
>
runCommand
()
async
{
if
(
platform
.
isWindows
)
{
throwToolExit
(
'The test command is currently not supported on Windows: '
'https://github.com/flutter/flutter/issues/8516'
);
}
List
<
String
>
testArgs
=
<
String
>[];
commandValidator
();
...
...
packages/flutter_tools/lib/src/doctor.dart
View file @
bb1dea74
...
...
@@ -224,15 +224,6 @@ class _FlutterValidator extends DoctorValidator {
messages
.
add
(
new
ValidationMessage
(
'Engine revision
${version.engineRevisionShort}
'
));
messages
.
add
(
new
ValidationMessage
(
'Tools Dart version
${version.dartSdkVersion}
'
));
if
(
platform
.
isWindows
)
{
valid
=
ValidationType
.
missing
;
messages
.
add
(
new
ValidationMessage
.
error
(
'Flutter tools are not (yet) supported on Windows: '
'https://github.com/flutter/flutter/issues/138.'
));
}
return
new
ValidationResult
(
valid
,
messages
,
statusInfo:
'on
${osName()}
, channel
${version.channel}
'
);
}
...
...
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