From 89ad82fe3f08af649de901429f2aa1a1a52a0bb0 Mon Sep 17 00:00:00 2001 From: Benjamin Milde Date: Thu, 21 Aug 2025 17:20:37 +0200 Subject: [PATCH] Forward stdin --- priv/wrapper.js | 1 + 1 file changed, 1 insertion(+) diff --git a/priv/wrapper.js b/priv/wrapper.js index 87641c8..be547a8 100644 --- a/priv/wrapper.js +++ b/priv/wrapper.js @@ -3,6 +3,7 @@ const command = process.argv.slice(2) const sub = Bun.spawn(command, { stdout: 'inherit', stderr: 'inherit', + stdin: Bun.stdin.stream(), onExit: (_, code) => process.exit(code) })