Skip to content

Commit 02ac535

Browse files
authored
Update rsync options in sync-repository.sh
Removed --size-only option from rsync command.
1 parent 8f28b2b commit 02ac535

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/sync-repository.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ case "$PUBLISHING_PATH" in
8484
esac
8585

8686
# Build rsync options - add --dry-run if DRY_RUN_SYNC is enabled
87-
RSYNC_OPTIONS="-av --size-only --omit-dir-times"
87+
RSYNC_OPTIONS="-av --omit-dir-times"
8888
if [[ "${DRY_RUN_SYNC}" == "true" ]]; then
8989
RSYNC_OPTIONS="$RSYNC_OPTIONS --dry-run"
9090
echo "::notice::DRY_RUN_SYNC is enabled - rsync will only show what would be transferred" | tee -a "$GITHUB_STEP_SUMMARY"

0 commit comments

Comments
 (0)