提交 1b582176 编写于 作者: D Dirk Baeumer

Support quoted commands under Windows.

上级 47c73c97
......@@ -369,7 +369,7 @@ export class TerminalTaskSystem extends EventEmitter implements ITaskSystem {
}
});
shellArgs.push(commandLine);
shellLaunchConfig.args = shellArgs;
shellLaunchConfig.args = Platform.isWindows ? shellArgs.join(' ') : shellArgs;
} else {
let cwd = options && options.cwd ? options.cwd : process.cwd();
// On Windows executed process must be described absolute. Since we allowed command without an
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册