Commit a97060e0 authored by Devon Carew's avatar Devon Carew Committed by GitHub

don't pass in --no-packages-dir (#9476)

parent 9b90ec48
......@@ -49,7 +49,7 @@ Future<Null> pubGet({
final String command = upgrade ? 'upgrade' : 'get';
final Status status = logger.startProgress("Running 'flutter packages $command' in ${fs.path.basename(directory)}...",
expectSlowOperation: true);
final List<String> args = <String>[sdkBinaryName('pub'), '--verbosity=warning', command, '--no-packages-dir', '--no-precompile'];
final List<String> args = <String>[sdkBinaryName('pub'), '--verbosity=warning', command, '--no-precompile'];
if (offline)
args.add('--offline');
final int code = await runCommandAndStreamOutput(args,
......
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