Unverified Commit 4e106d7e authored by Chris Bracken's avatar Chris Bracken Committed by GitHub

Eliminate doctor warning about paths with spaces (#14614)

Some people call me the space cowboy
Some people call me the gangster of love
Some people call me Maurice
parent a6135a67
......@@ -231,13 +231,6 @@ class _FlutterValidator extends DoctorValidator {
final FlutterVersion version = FlutterVersion.instance;
messages.add(new ValidationMessage('Flutter version ${version.frameworkVersion} at ${Cache.flutterRoot}'));
if (Cache.flutterRoot.contains(' ')) {
messages.add(new ValidationMessage.error(
'Flutter SDK install paths with spaces are not yet supported. '
'(https://github.com/flutter/flutter/issues/6577)\n'
'Please move the SDK to a path that does not include spaces.'
));
}
messages.add(new ValidationMessage(
'Framework revision ${version.frameworkRevisionShort} '
'(${version.frameworkAge}), ${version.frameworkDate}'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment