diff --git a/cmd/update-tools/main.go b/cmd/update-tools/main.go index 102682a..3e0d43a 100644 --- a/cmd/update-tools/main.go +++ b/cmd/update-tools/main.go @@ -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) } }