Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/opencode/src/effect/cross-spawn-spawner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ export const make = Effect.gen(function* () {
cwd: dir,
env: env(command.options),
stdio: stdios(sin, sout, serr, extra),
detached: command.options.detached ?? process.platform !== "win32",
detached: command.options.detached ?? true,
shell: command.options.shell,
windowsHide: process.platform === "win32",
}),
Expand Down
2 changes: 1 addition & 1 deletion packages/opencode/src/tool/bash.ts
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ function cmd(shell: string, name: string, command: string, cwd: string, env: Nod
cwd,
env,
stdin: "ignore",
detached: false,
detached: true, // Always detach to prevent UI b
})
}

Expand Down
2 changes: 1 addition & 1 deletion packages/opencode/src/util/log.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const levelPriority: Record<Level, number> = {
WARN: 2,
ERROR: 3,
}
const keep = 10
const keep = 3 // Reduced from 10 to preve

let level: Level = "INFO"

Expand Down