diff options
| author | Dax Raad <[email protected]> | 2025-06-17 10:38:01 -0400 |
|---|---|---|
| committer | Dax Raad <[email protected]> | 2025-06-17 10:38:01 -0400 |
| commit | ae5cf3cc239a05e3031d2f9295fec3ffceed1726 (patch) | |
| tree | 07b7830fb2a208427bbe693e132e7c74eaa0c000 /packages | |
| parent | 68e1b3c46ca18ce30bb9f056a25fef08e70d439b (diff) | |
| download | opencode-ae5cf3cc239a05e3031d2f9295fec3ffceed1726.tar.gz opencode-ae5cf3cc239a05e3031d2f9295fec3ffceed1726.zip | |
ci: fix
Diffstat (limited to 'packages')
| -rw-r--r-- | packages/opencode/src/app/app.ts | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/packages/opencode/src/app/app.ts b/packages/opencode/src/app/app.ts index 32ffea9e4..649cfd749 100644 --- a/packages/opencode/src/app/app.ts +++ b/packages/opencode/src/app/app.ts @@ -5,7 +5,6 @@ import { Global } from "../global" import path from "path" import os from "os" import { z } from "zod" -import { Installation } from "../installation" export namespace App { const log = Log.create({ service: "app" }) @@ -50,9 +49,7 @@ export namespace App { const stateFile = Bun.file(path.join(data, APP_JSON)) const state = (await stateFile.json().catch(() => ({}))) as { initialized: number - version: string } - state.version = Installation.VERSION await stateFile.write(JSON.stringify(state)) const services = new Map< @@ -129,7 +126,6 @@ export namespace App { await Bun.write( path.join(info.path.data, APP_JSON), JSON.stringify({ - version: Installation.VERSION, initialized: Date.now(), }), ) |
