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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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