Blog/scripts/deploy.sh

15 lines
236 B
Bash
Raw Normal View History

2024-03-28 18:33:47 +03:00
#!/bin/sh
IN=./public/
DIR=Sites/iiiypuk.me/www/
2024-06-25 22:29:17 +03:00
./hugo && rsync -avz --delete \
2024-03-28 19:10:41 +03:00
--exclude 'ytcg' \
--exclude 'chola' \
2024-04-27 22:46:02 +03:00
--exclude 'y' \
2024-06-25 22:29:17 +03:00
--exclude 'a.html' \
--exclude 'DeusEx.png' \
2024-03-28 18:33:47 +03:00
${IN} kvm5:~/${DIR}
exit 0