Fix project folder name starting with "-" in data (#323). Note old session data will still be in the old format in ~/.local/share/opencode/projects - you can remove the leading dash to recover the,

This commit is contained in:
Lucas Grzegorczyk
2025-06-23 20:31:51 +02:00
committed by GitHub
parent 8d3b2fb821
commit ed1b0d97bf

View File

@@ -46,7 +46,7 @@ export namespace App {
const data = path.join( const data = path.join(
Global.Path.data, Global.Path.data,
"project", "project",
git ? git.split(path.sep).join("-") : "global", git ? git.split(path.sep).filter(Boolean).join("-") : "global",
) )
const stateFile = Bun.file(path.join(data, APP_JSON)) const stateFile = Bun.file(path.join(data, APP_JSON))
const state = (await stateFile.json().catch(() => ({}))) as { const state = (await stateFile.json().catch(() => ({}))) as {