More work on #27581

This commit is contained in:
Dirk Baeumer
2017-05-31 13:17:54 +02:00
parent c78ebcb2f4
commit 83001adc61
8 changed files with 32 additions and 32 deletions

View File

@@ -338,7 +338,7 @@ namespace Tasks {
name: value.process,
args: Strings.from(value.args),
type: TaskSystem.CommandType.Process,
terminal: TerminalBehaviour.from(value.terminal)
terminalBehavior: TerminalBehaviour.from(value.terminalBehavior)
};
if (value.options) {
result.options = CommandOptions.from(value.options);
@@ -353,7 +353,7 @@ namespace Tasks {
let result: TaskSystem.CommandConfiguration = {
name: value.commandLine,
type: TaskSystem.CommandType.Shell,
terminal: TerminalBehaviour.from(value.terminal)
terminalBehavior: TerminalBehaviour.from(value.terminalBehavior)
};
if (value.options) {
result.options = CommandOptions.from(value.options);