Skip to content

Commit 4e106d7

Browse files
authored
Eliminate doctor warning about paths with spaces (flutter#14614)
Some people call me the space cowboy Some people call me the gangster of love Some people call me Maurice
1 parent a6135a6 commit 4e106d7

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

packages/flutter_tools/lib/src/doctor.dart

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -231,13 +231,6 @@ class _FlutterValidator extends DoctorValidator {
231231
final FlutterVersion version = FlutterVersion.instance;
232232

233233
messages.add(new ValidationMessage('Flutter version ${version.frameworkVersion} at ${Cache.flutterRoot}'));
234-
if (Cache.flutterRoot.contains(' ')) {
235-
messages.add(new ValidationMessage.error(
236-
'Flutter SDK install paths with spaces are not yet supported. '
237-
'(https://github.com/flutter/flutter/issues/6577)\n'
238-
'Please move the SDK to a path that does not include spaces.'
239-
));
240-
}
241234
messages.add(new ValidationMessage(
242235
'Framework revision ${version.frameworkRevisionShort} '
243236
'(${version.frameworkAge}), ${version.frameworkDate}'

0 commit comments

Comments
 (0)