mirror of
https://github.com/overte-org/overte.git
synced 2025-04-21 09:24:00 +02:00
ignore stdio from child process
This commit is contained in:
parent
bddb8d5b68
commit
66b3aeeeba
1 changed files with 2 additions and 1 deletions
|
@ -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));
|
||||
|
|
Loading…
Reference in a new issue