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,
parent
8d3b2fb821
commit
ed1b0d97bf
|
|
@ -46,7 +46,7 @@ export namespace App {
|
|||
const data = path.join(
|
||||
Global.Path.data,
|
||||
"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 state = (await stateFile.json().catch(() => ({}))) as {
|
||||
|
|
|
|||
Loading…
Reference in New Issue