Skip to content

Commit ae5cf3c

Browse files
committed
ci: fix
1 parent 68e1b3c commit ae5cf3c

File tree

1 file changed

+0
-4
lines changed
  • packages/opencode/src/app

1 file changed

+0
-4
lines changed

packages/opencode/src/app/app.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import { Global } from "../global"
55
import path from "path"
66
import os from "os"
77
import { z } from "zod"
8-
import { Installation } from "../installation"
98

109
export namespace App {
1110
const log = Log.create({ service: "app" })
@@ -50,9 +49,7 @@ export namespace App {
5049
const stateFile = Bun.file(path.join(data, APP_JSON))
5150
const state = (await stateFile.json().catch(() => ({}))) as {
5251
initialized: number
53-
version: string
5452
}
55-
state.version = Installation.VERSION
5653
await stateFile.write(JSON.stringify(state))
5754

5855
const services = new Map<
@@ -129,7 +126,6 @@ export namespace App {
129126
await Bun.write(
130127
path.join(info.path.data, APP_JSON),
131128
JSON.stringify({
132-
version: Installation.VERSION,
133129
initialized: Date.now(),
134130
}),
135131
)

0 commit comments

Comments
 (0)