提交 46c5c742 编写于 作者: D Dirk Baeumer

Run a normal shell under Mac.

上级 eed12c19
......@@ -538,6 +538,13 @@ export class TerminalTaskSystem implements ITaskSystem {
}
} else {
if (!shellSpecified) {
// Under Mac remove -l to not start it as a login shell.
if (Platform.isMacintosh) {
let index = shellArgs.indexOf('-l');
if (index !== -1) {
shellArgs.splice(index, 1);
}
}
toAdd.push('-c');
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册