Skip to content

Commit 18b74aa

Browse files
committed
chore: restore unrelated duplicate block to keep branch tightly scoped
1 parent 71f9391 commit 18b74aa

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

packages/opencode/src/config/config.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,11 @@ export namespace Config {
135135
result.share = "auto"
136136
}
137137

138+
// Handle migration from autoshare to share field
139+
if (result.autoshare === true && !result.share) {
140+
result.share = "auto"
141+
}
142+
138143
if (!result.keybinds) result.keybinds = Info.shape.keybinds.parse({})
139144

140145
// Apply flag overrides for compaction settings

0 commit comments

Comments
 (0)