diff --git a/services/clsi/app/js/LocalCommandRunner.js b/services/clsi/app/js/LocalCommandRunner.js index c1ae800847..b1240d29ab 100644 --- a/services/clsi/app/js/LocalCommandRunner.js +++ b/services/clsi/app/js/LocalCommandRunner.js @@ -50,7 +50,7 @@ module.exports = CommandRunner = { } // run command as detached process so it has its own process group (which can be killed if needed) - const proc = spawn(command[0], command.slice(1), { cwd: directory, env }) + const proc = spawn(command[0], command.slice(1), { cwd: directory, env, stdio: ['pipe', 'pipe', 'ignore'] }) let stdout = '' proc.stdout.setEncoding('utf8').on('data', data => (stdout += data))