mirror of https://github.com/nodejs/node.git
Fix child_process to use end() instead of close() in the stdin stream.
parent
06b9c8bf1f
commit
ff56d6364e
|
@ -56,7 +56,7 @@ function ChildProcess () {
|
|||
internal.onexit = function (code) {
|
||||
gotCHLD = true;
|
||||
exitCode = code;
|
||||
stdin.close();
|
||||
stdin.end();
|
||||
if (!stdout.readable && !stderr.readable) {
|
||||
self.emit('exit', exitCode);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue