fix(project): await git id cache write (#14977)

This commit is contained in:
Luke Parker
2026-02-25 10:46:12 +10:00
committed by GitHub
parent 3af12c53c4
commit e718263778

View File

@@ -138,7 +138,7 @@ export namespace Project {
id = roots[0] id = roots[0]
if (id) { if (id) {
void Filesystem.write(path.join(dotgit, "opencode"), id).catch(() => undefined) await Filesystem.write(path.join(dotgit, "opencode"), id).catch(() => undefined)
} }
} }