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: make installation test script POSIX sh compatible for broader platform support
Replaced bash-specific syntax with POSIX sh equivalents:
- Arrays replaced with newline-separated strings
- Array append (+=) replaced with string concatenation
- for loop over array replaced with while read loop
- Substring extraction replaced with cut command
This ensures compatibility with GitHub Actions and other platforms
that use dash or older sh implementations instead of bash.
0 commit comments