mirror of
https://github.com/overte-org/overte.git
synced 2025-08-11 03:52:55 +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);
|
console.log("Starting " + this.command);
|
||||||
try {
|
try {
|
||||||
this.child = childProcess.spawn(this.command, this.commandArgs, {
|
this.child = childProcess.spawn(this.command, this.commandArgs, {
|
||||||
detached: false
|
detached: false,
|
||||||
|
stdio: 'ignore'
|
||||||
});
|
});
|
||||||
//console.log("started ", this.child);
|
//console.log("started ", this.child);
|
||||||
this.child.on('error', this.onChildStartError.bind(this));
|
this.child.on('error', this.onChildStartError.bind(this));
|
||||||
|
|
Loading…
Reference in a new issue