Commit 07f60e67 authored by Adam Barth's avatar Adam Barth

Merge pull request #2955 from abarth/flutter_upgrade

`flutter upgrade` needed twice if sky_services dependencies change
parents 641604ad 3824e88d
......@@ -43,6 +43,11 @@ class UpgradeCommand extends FlutterCommand {
if (code != 0)
return code;
// Causes us to update our locally cached packages.
code = await runCommandAndStreamOutput(<String>[
'bin/flutter', '--version'
], workingDirectory: ArtifactStore.flutterRoot);
printStatus('');
code = await runCommandAndStreamOutput([sdkBinaryName('pub'), 'upgrade']);
......
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