her.esy.fun/engine/sync.sh

10 lines
236 B
Bash
Raw Normal View History

2019-11-22 00:51:02 +00:00
#!/usr/bin/env zsh
2020-02-10 08:42:17 +00:00
cd "$(git rev-parse --show-toplevel)" || exit 1
2020-02-16 14:41:44 +00:00
rootdir=$PWD
2019-11-22 00:51:02 +00:00
echo $rootdir
2019-12-22 23:01:06 +00:00
echo -n "Uploading website"
2019-11-22 00:51:02 +00:00
rsync --progress --partial -avHe ssh $rootdir/_site/ root@esy.fun:/var/www/her.esy.fun/ --delete
2019-12-22 23:01:06 +00:00
echo " [done]"