2019-10-19 11:41:54 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
2019-10-20 12:20:48 +02:00
|
|
|
USER=dotyaoverlord
|
|
|
|
HOST=dotya.ml
|
|
|
|
DIR=public/
|
2019-10-19 11:41:54 +02:00
|
|
|
|
2020-02-18 00:23:35 +01:00
|
|
|
git submodule init
|
|
|
|
git submodule update
|
2020-02-17 23:51:14 +01:00
|
|
|
hugo --gc=true && rsync -avz --delete public/ ${USER}@${HOST}:~/${DIR}
|
2019-10-19 11:41:54 +02:00
|
|
|
|
|
|
|
exit 0
|