Compare commits

..

No commits in common. "ff6f01534e4d34ffd9fd2d99539a4e3a9bb9440f" and "a10936a7baf5074427ec19166c3615d315aa3bfe" have entirely different histories.

View file

@ -19,9 +19,10 @@ deploy:
then echo "Missing one of SSH_USER, SSH_HOST, or SSH_TARGET" >&2; \
exit 1; \
fi
env
mkdir -p ~/.ssh/
touch ~/.ssh/known_hosts
ssh-keygen -R "$$SSH_HOST" -f ~/.ssh/known_hosts
ssh-keygen -R "$$SSH_HOST"
ssh-keyscan "$$SSH_HOST" >> ~/.ssh/known_hosts
rsync -e "ssh -o StrictHostKeyChecking=no" --progress -avz --delete public/ "$$SSH_USER@$$SSH_HOST:$$SSH_TARGET"