fix(browser): prevent stdio buffer blocking in Docker environments

This commit is contained in:
Stephen Schoettler
2026-02-26 12:16:28 -08:00
committed by Peter Steinberger
parent 69217164f7
commit 5e64265537

View File

@@ -324,7 +324,7 @@ export async function launchOpenClawChrome(
userDataDir,
});
return spawn(exe.path, args, {
stdio: "pipe",
stdio: ["ignore", "ignore", "ignore"],
env: {
...process.env,
// Reduce accidental sharing with the user's env.