rsync
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Elizabeth Hunt 2024-03-09 13:40:07 -07:00
parent 1ab79d9a1a
commit e991bac23c
Signed by: simponic
GPG Key ID: 52B3774857EB24B1

View File

@ -4,6 +4,7 @@ set -e
echo $SSH_KEY | base64 -d >> /tmp/key
chmod -R 0600 /tmp/key
scp -o StrictHostKeyChecking=no -i /tmp/key -r dist/* $SSH_CONNECTION_STRING:~
#scp -o StrictHostKeyChecking=no -i /tmp/key -r dist/* $SSH_CONNECTION_STRING:~
rsync -o StrictHostKeyChecking=no -i /tmp/key -avz dist/* $SSH_CONNECTION_STRING:~
rm /tmp/key