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-03-10 03:49:49 +01:00
|
|
|
../hugo --gc=true --minify && rsync -avz --delete public/ ${USER}@${HOST}:~/${DIR}
|
2019-10-19 11:41:54 +02:00
|
|
|
|
|
|
|
exit 0
|