fix(tmux): avoid Bun global in runner bundle

Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
YeonGyu-Kim
2026-05-06 14:30:29 +09:00
parent 8003d1a147
commit 4e5980d7a9
2 changed files with 3 additions and 1 deletions
+2
View File
@@ -14,6 +14,7 @@ export interface SpawnOptions {
stderr?: StdioMode
stdio?: StdioTuple
detached?: boolean
signal?: AbortSignal
}
export interface SpawnedProcess {
@@ -138,6 +139,7 @@ export function spawn(cmdOrOpts: unknown, opts?: unknown): SpawnedProcess {
env: options.env,
stdio: resolveStdio(options),
detached: options.detached,
signal: options.signal,
})
return wrapNodeProcess(proc)
+1 -1
View File
@@ -1,4 +1,4 @@
import { spawn } from "bun"
import { spawn } from "../bun-spawn-shim"
type RunTmuxOptions = {
retry?: number