Commit 4a3cd610 authored by Chris Bracken's avatar Chris Bracken Committed by GitHub

Execute flutter doctor on upgrade (#6330)

Ensure that any new/changed doctor checks are evaluated and reported
post upgrade.
parent 9a136b87
......@@ -79,6 +79,11 @@ class UpgradeCommand extends FlutterCommand {
return code;
}
// Run a doctor check in case system requirements have changed.
printStatus('');
printStatus('Running flutter doctor...');
await doctor.diagnose();
return 0;
}
......
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