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: replace ((var++)) with var=$((var+1)) in validate-plugins.sh
((var++)) returns exit code 1 when var=0 under bash set -e, causing
the script to terminate prematurely. Also removed set -e so the script
can accumulate all errors before reporting instead of dying on the first.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
0 commit comments