remove dry-run on sync script; replace with -c for partial build
This commit is contained in:
parent
7491f8a76d
commit
51fa7c0c34
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue