diff --git a/deploy.sh b/deploy.sh index aee9518..0dcfba8 100755 --- a/deploy.sh +++ b/deploy.sh @@ -8,7 +8,7 @@ chmod -R 0600 /tmp/key for item in dist/*; do echo "copying $i" ITEM_NAME=$(basename $item) - rsync -e "ssh -i /tmp/key -o StrictHostKeyChecking=no" -avz --delete $item $RSYNC_DESTINATION/tst/$ITEM_NAME + rsync -e "ssh -i /tmp/key -o StrictHostKeyChecking=no" -avz --delete $item $RSYNC_DESTINATION/$ITEM_NAME done echo "finished copying to remote host..." cd ..