Fix default value for 'packages' option to be null (flutter/engine#4570)

This commit is contained in:
Alexander Aprelev
2018-01-18 17:12:29 -08:00
committed by GitHub
parent a8e9231915
commit b4425bcd06

View File

@@ -46,7 +46,7 @@ ArgParser _argParser = new ArgParser(allowTrailingOptions: true)
defaultsTo: true)
..addOption('packages',
help: '.packages file to use for compilation',
defaultsTo: '.packages');
defaultsTo: null);
String _usage = '''
Usage: server [options] [input.dart]