From 7ce883140139cf9f293d690129601349d6d9a4d0 Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Sun, 19 Apr 2020 16:52:14 +0530 Subject: release/deploy-snapshot: Don't swallow errors (#724) Signed-off-by: Harsh Shandilya --- release/deploy-snapshot.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'release/deploy-snapshot.sh') diff --git a/release/deploy-snapshot.sh b/release/deploy-snapshot.sh index e5d64b0d..9139614b 100755 --- a/release/deploy-snapshot.sh +++ b/release/deploy-snapshot.sh @@ -7,5 +7,5 @@ chmod 600 "$SSHDIR/key" export SERVER_DEPLOY_STRING="$SSH_USERNAME@$SERVER_ADDRESS:$SERVER_DESTINATION" cd "$GITHUB_WORKSPACE/app/build/outputs/apk/release" rm output.json -rsync -ahvcr --omit-dir-times --progress --delete --no-o --no-g -e "ssh -i $SSHDIR/key -o StrictHostKeyChecking=no -p $SSH_PORT" . "$SERVER_DEPLOY_STRING" || true +rsync -ahvcr --omit-dir-times --progress --delete --no-o --no-g -e "ssh -i $SSHDIR/key -o StrictHostKeyChecking=no -p $SSH_PORT" . "$SERVER_DEPLOY_STRING" || exit 1 exit 0 -- cgit v1.2.3