mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 10:28:47 +00:00
return null rather than process.stdin on child process (#17741)
This commit is contained in:
@@ -1134,7 +1134,7 @@ class ChildProcess extends EventEmitter {
|
||||
return require("internal/fs/streams").writableFromFileSink(stdin);
|
||||
}
|
||||
case "inherit":
|
||||
return process.stdin || null;
|
||||
return null;
|
||||
case "destroyed":
|
||||
return new ShimmedStdin();
|
||||
default:
|
||||
|
||||
Reference in New Issue
Block a user