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: use POSIX-compatible arithmetic in compatibility test script
Replace ((VAR++)) with VAR=$((VAR + 1)) to avoid issues with
bash's set -e when the variable is 0 (which causes the expression
to return 1 and trigger an exit).
0 commit comments