Fixes #27470: Tasks: below tasks.json is not valid although it should be

This commit is contained in:
Dirk Baeumer
2017-06-01 00:15:16 +02:00
parent 06fd9024ac
commit eb9de44ec9
7 changed files with 340 additions and 245 deletions

View File

@@ -324,7 +324,6 @@ namespace Tasks {
group: types.TaskGroup.is(task.group) ? task.group : undefined,
command: command,
isBackground: !!task.isBackground,
suppressTaskName: true,
problemMatchers: task.problemMatchers.slice()
};
return result;
@@ -338,6 +337,7 @@ namespace Tasks {
name: value.process,
args: Strings.from(value.args),
type: TaskSystem.CommandType.Process,
suppressTaskName: true,
terminalBehavior: TerminalBehaviour.from(value.terminalBehavior)
};
if (value.options) {