Skip to content

Commit

Permalink
ci: ignore node_modules during rsync
Browse files Browse the repository at this point in the history
  • Loading branch information
bodymindarts committed Nov 10, 2023
1 parent ce345f4 commit 494ba7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/apps/tasks/run-on-nix-host.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ tunnel_pid="$!"
# Retry loop with a 1-second sleep to wait for the rsync command to succeed
rsync_ready=false
for i in {1..30}; do
rsync -avr --delete --exclude="buck-out/**" \
rsync -avr --delete --exclude="buck-out/**" --exclude="**/node_modules/**" \
-e "ssh -o StrictHostKeyChecking=no -i ${CI_ROOT}/login.ssh -p 2222" \
"${REPO_PATH}/" \
"${login_user}@localhost:${REPO_PATH}" && {
Expand Down

0 comments on commit 494ba7a

Please sign in to comment.