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(release-skill): make Phase 3 asset count shell-agnostic
The naive `for e in $expected; do grep -qx "$e"; done` count silently
reports 0/7 under zsh, which does not word-split unquoted variables.
Replace it with a POSIX-portable command (printf list piped to
`grep -Fxf -` against a temp file) that works in sh, bash, and zsh,
and document why each portable choice was made.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
0 commit comments