You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(ci): prevent grep exit code 1 from failing dependency checks
When all binary dependencies are valid system libraries, `grep -Ev`
filters out all lines and returns exit code 1 (no matches). Under
`bash -e` (GitHub Actions default), this kills the script before it
can report success. Add `|| true` to all grep commands inside command
substitutions across Linux and macOS verification steps.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
0 commit comments