Skip to content

Commit

Permalink
fix shell commands on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
rksm committed Jul 27, 2017
1 parent 1697d03 commit 0e1db61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/servers/CommandLineServer.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ var doKill = defaultKill;
function startSpawn(cmdInstructions) {
var commandEnv = cmdInstructions.env || {};
commandEnv.__proto__ = env;
var options = {env: commandEnv, cwd: cmdInstructions.cwd || dir, stdio: 'pipe', detached: true},
var options = {env: commandEnv, cwd: cmdInstructions.cwd || dir, stdio: 'pipe', detached: !isWindows},
commandString = cmdInstructions.command,
stdin = cmdInstructions.stdin;
if (util.isArray(command)) {
Expand Down

0 comments on commit 0e1db61

Please sign in to comment.