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: pass artifact paths to rsync via --files-from temp file
- Collect artifact paths into a temp file using a bash for loop
instead of appending them directly as rsync CLI arguments
- Use rsync --files-from to read paths from the temp file,
avoiding ARG_MAX (~2 MB) exceeded errors with large artifacts
- The bash for loop (a shell built-in) correctly expands glob
patterns and is not subject to ARG_MAX constraints
- Remove the temp file after rsync completes
0 commit comments