diff options
Diffstat (limited to 'runtime/js/40_spawn.js')
-rw-r--r-- | runtime/js/40_spawn.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/js/40_spawn.js b/runtime/js/40_spawn.js index 9c1d96a28..ecbab52ad 100644 --- a/runtime/js/40_spawn.js +++ b/runtime/js/40_spawn.js @@ -315,6 +315,7 @@ ...(this.#options ?? {}), stdout: this.#options?.stdout ?? "inherit", stderr: this.#options?.stderr ?? "inherit", + stdin: this.#options?.stdin ?? "inherit", }; return spawnChild(this.#command, options); } |