fix: skip oracle update if upstream pnpm lockfile is broken

This commit is contained in:
joshp123 2026-02-14 18:54:15 -08:00
parent 2674adf777
commit 83f13e8c5c

View File

@ -314,6 +314,8 @@ func main() {
}
if err := updateOracle(repoRoot); err != nil {
log.Fatalf("update oracle failed: %v", err)
// Oracle releases occasionally ship with an out-of-date pnpm-lock.yaml.
// In that case, we keep the previously pinned version and still update other tools.
log.Printf("[update-tools] skipping oracle update: %v", err)
}
}