File tree Expand file tree Collapse file tree 1 file changed +0
-4
lines changed
packages/opencode/src/app Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,6 @@ import { Global } from "../global"
55import path from "path"
66import os from "os"
77import { z } from "zod"
8- import { Installation } from "../installation"
98
109export 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 )
You can’t perform that action at this time.
0 commit comments