1
0
mirror of synced 2026-08-05 09:47:05 +00:00

remove dry-run on sync script; replace with -c for partial build

This commit is contained in:
Dan Allen
2022-11-10 16:24:57 -07:00
committed by Rob Winch
parent 7491f8a76d
commit 51fa7c0c34
+1 -1
View File
@@ -20,7 +20,7 @@ fi
echo "$SSH_KNOWN_HOST" > ~/.ssh/known_hosts
RSYNC_OPTS='-avz --delete'
if [ -n "$BUILD_REFNAME" ]; then
RSYNC_OPTS="-n $RSYNC_OPTS$(find $FROM -mindepth 1 -maxdepth 1 \! -name 404.html \! -name '.*' -type f -printf ' --include /%P')"
RSYNC_OPTS="-c $RSYNC_OPTS$(find $FROM -mindepth 1 -maxdepth 1 \! -name 404.html \! -name '.*' -type f -printf ' --include /%P')"
RSYNC_OPTS="$RSYNC_OPTS$(find $FROM -mindepth 1 -maxdepth 1 -type d \! -name _ -printf ' --include /%P --include /%P/**') --exclude **"
fi
rsync $RSYNC_OPTS -e "ssh -i $SSH_PRIVATE_KEY_PATH" $FROM/ "$HOST:$HOST_PATH"