This commit is contained in:
Dirk Baeumer
2016-02-29 15:29:50 +01:00
parent 4c27e1bc56
commit a2971791b2

View File

@@ -208,7 +208,10 @@ class ConfigureTaskRunnerAction extends Action {
options: {
forceOpen: true
}
}, sideBySide);
}, sideBySide).then((value) => {
this.outputService.showOutput(TaskService.OutputChannel, true);
return value;
});
}, (error) => {
throw new Error(nls.localize('ConfigureTaskRunnerAction.failed', "Unable to create the 'tasks.json' file inside the '.vscode' folder. Consult the task output for details."));
});