From f21cf878814d65fac66627f636b8241c25e60c03 Mon Sep 17 00:00:00 2001 From: Joakim Persson Date: Sun, 19 Apr 2026 19:30:31 +0200 Subject: [PATCH] Fix rsync flag for macOS compatibility --- deploy/sync-to-vm.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy/sync-to-vm.sh b/deploy/sync-to-vm.sh index 0234363..c94e4a9 100755 --- a/deploy/sync-to-vm.sh +++ b/deploy/sync-to-vm.sh @@ -83,7 +83,7 @@ for entry in "${MOUNT_PATTERNS[@]}"; do # Sync with rsync (fall back to scp if rsync unavailable) if command -v rsync &>/dev/null; then - rsync -az --info=progress2 "${local_path}/" "${SSH_HOST}:${remote_path}/" + rsync -az --progress "${local_path}/" "${SSH_HOST}:${remote_path}/" else scp -r "${local_path}/." "${SSH_HOST}:${remote_path}/" fi