mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-25 19:18:59 +01:00
Fixes #27470: Tasks: below tasks.json is not valid although it should be
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user