Skip to content
Closed
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
6 changes: 5 additions & 1 deletion packages/opencode/src/cli/cmd/tui/worker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,11 @@ export const rpc = {
directory: input.directory,
init: InstanceBootstrap,
fn: async () => {
await upgrade().catch(() => {})
await upgrade().catch((err) => {
// Never silently swallow upgrade errors — if this fails, users
// get locked on old versions with no way to self-heal.
console.error("[upgrade] check failed:", String(err))
})
},
})
},
Expand Down
Loading
Loading