homepage/deploy

18 lines
263 B
Plaintext
Raw Normal View History

2019-10-19 11:41:54 +02:00
#!/bin/sh
2020-03-10 04:06:54 +01:00
USR=dotyaoverlord
2019-10-20 12:20:48 +02:00
HOST=dotya.ml
DIR=public/
2019-10-19 11:41:54 +02:00
git submodule init
git submodule update
2020-03-10 04:06:54 +01:00
../hugo --gc=true --minify
if [ $USER == $USR ]; then
rsync -av --delete public/ ~/${DIR}
else
rsync -avz --delete public/ ${USR}@${HOST}:~/${DIR}
fi
2019-10-19 11:41:54 +02:00
exit 0