ignore stdio from child process

This commit is contained in:
Stephen Birarda 2015-12-03 14:20:29 -08:00
parent bddb8d5b68
commit 66b3aeeeba

View file

@ -54,7 +54,8 @@ Process.prototype = extend(Process.prototype, {
console.log("Starting " + this.command);
try {
this.child = childProcess.spawn(this.command, this.commandArgs, {
detached: false
detached: false,
stdio: 'ignore'
});
//console.log("started ", this.child);
this.child.on('error', this.onChildStartError.bind(this));