do not output bunproc

This commit is contained in:
Dax Raad 2025-06-12 13:39:03 -04:00
parent b536b45536
commit e3ad6a0698

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,