Skip to content

Commit 4e0aa58

Browse files
committed
ignore: fix
1 parent 23ee34b commit 4e0aa58

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

packages/opencode/src/app/app.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ export namespace App {
6969
git: git !== undefined,
7070
path: {
7171
config: Global.Path.config,
72+
state: Global.Path.state,
7273
data,
7374
root: git ?? input.cwd,
7475
cwd: input.cwd,

packages/opencode/src/global/config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ import path from "path"
55

66
export namespace GlobalConfig {
77
export const Info = z.object({
8-
autoupdate: z.boolean().optional(),
9-
autoshare: z.boolean().optional(),
108
provider: z.string().optional(),
119
model: z.string().optional(),
10+
autoupdate: z.boolean().optional(),
11+
autoshare: z.boolean().optional(),
1212
disabled_providers: z.array(z.string()).optional(),
1313
})
1414
export type Info = z.infer<typeof Info>

0 commit comments

Comments
 (0)