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(compat): ensure Bash 3.0+ compatibility in parallel optimizations
Changes for Bash 3.0+ compliance:
- Replace [[ ]] with [ ] test operators in runner.sh
- Replace == with = for string comparisons
- Add fallback from tar to cp+rm for portability
- Fix indentation to pass EditorConfig linting
The tar pipe optimization now gracefully falls back to the traditional
cp + rm approach on systems without tar or with limited tar support,
ensuring maximum portability while maintaining performance gains on
systems with modern tar implementations.
0 commit comments