fix packages being reinstalled on every start

This commit is contained in:
Dax Raad
2025-07-12 12:40:38 -04:00
parent 9aa0c40a00
commit 17fa8c117b
2 changed files with 12 additions and 2 deletions

View File

@@ -27,7 +27,7 @@ await Promise.all([
fs.mkdir(Global.Path.state, { recursive: true }),
])
const CACHE_VERSION = "1"
const CACHE_VERSION = "2"
const version = await Bun.file(path.join(Global.Path.cache, "version"))
.text()