do not output bunproc

pull/81/head v0.1.16
Dax Raad 2025-06-12 13:39:03 -04:00
parent b536b45536
commit e3ad6a0698
1 changed files with 2 additions and 1 deletions

View File

@ -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,