Skip to content

Commit

Permalink
don't pass in --no-packages-dir (flutter#9476)
Browse files Browse the repository at this point in the history
  • Loading branch information
devoncarew committed Apr 19, 2017
1 parent 9b90ec4 commit a97060e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/flutter_tools/lib/src/dart/pub.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit a97060e

Please sign in to comment.