diff options
| author | Dax Raad <[email protected]> | 2025-06-12 13:39:03 -0400 |
|---|---|---|
| committer | Dax Raad <[email protected]> | 2025-06-12 13:39:03 -0400 |
| commit | e3ad6a0698613851be01cf4936177239371cad5e (patch) | |
| tree | 6ae69c8883435952e94898ce629d29afaa7cc105 | |
| parent | b536b45536085f764a55c55d3b583fc8bd4e43d7 (diff) | |
| download | opencode-e3ad6a0698613851be01cf4936177239371cad5e.tar.gz opencode-e3ad6a0698613851be01cf4936177239371cad5e.zip | |
do not output bunproc
| -rw-r--r-- | packages/opencode/src/bun/index.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/opencode/src/bun/index.ts b/packages/opencode/src/bun/index.ts index 34f9386c3..48346385b 100644 --- a/packages/opencode/src/bun/index.ts +++ b/packages/opencode/src/bun/index.ts @@ -1,4 +1,3 @@ -import path from "path" import { Log } from "../util/log" export namespace BunProc { const log = Log.create({ service: "bun" }) @@ -13,6 +12,8 @@ export namespace BunProc { }) const result = Bun.spawn([which(), ...cmd], { ...options, + stdout: "pipe", + stderr: "pipe", env: { ...process.env, ...options?.env, |
