Skip to content

Commit

Permalink
Always run verbose version of Doctor
Browse files Browse the repository at this point in the history
Fixes #1933.
  • Loading branch information
DanTup committed Aug 19, 2019
1 parent 29470b4 commit 233df92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/extension/commands/sdk.ts
Expand Up @@ -169,7 +169,7 @@ export class SdkCommands {
const tempDir = path.join(os.tmpdir(), "dart-code-cmd-run");
if (!fs.existsSync(tempDir))
fs.mkdirSync(tempDir);
return this.runFlutterInFolder(tempDir, ["doctor"], "flutter");
return this.runFlutterInFolder(tempDir, ["doctor", "-v"], "flutter");
}));
context.subscriptions.push(vs.commands.registerCommand("flutter.upgrade", async (selection) => {
if (!workspace.sdks.flutter) {
Expand Down

0 comments on commit 233df92

Please sign in to comment.