diff --git a/lib/launchers/process.js b/lib/launchers/process.js index c25039aa4..e079a53af 100644 --- a/lib/launchers/process.js +++ b/lib/launchers/process.js @@ -135,7 +135,17 @@ var ProcessLauncher = function (spawn, tempDir, timer) { ProcessLauncher.decoratorFactory = function (timer) { return function (launcher) { - ProcessLauncher.call(launcher, require('child_process').spawn, require('../temp_dir'), timer) + var spawn = require('child_process').spawn + + var spawnWithoutOutput = function () { + var proc = spawn.apply(null, arguments) + proc.stdout.resume() + proc.stderr.resume() + + return proc + } + + ProcessLauncher.call(launcher, spawnWithoutOutput, require('../temp_dir'), timer) } }