From cadeaae045d2489fe125286b8c2c641c6d973c3f Mon Sep 17 00:00:00 2001 From: Leo Kettmeir Date: Tue, 24 Jan 2023 15:03:46 +0100 Subject: feat(runtime/command): make stdin default to inherit for spawn() (#17334) Closes #17230 --- runtime/js/40_spawn.js | 1 + 1 file changed, 1 insertion(+) (limited to 'runtime') 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); } -- cgit v1.2.3