12 lines
188 B
Bash
Executable File
12 lines
188 B
Bash
Executable File
#!/bin/sh
|
|
|
|
USER=dotyaoverlord
|
|
HOST=dotya.ml
|
|
DIR=public/
|
|
|
|
git submodule init
|
|
git submodule update
|
|
../hugo --gc=true --minify && rsync -avz --delete public/ ${USER}@${HOST}:~/${DIR}
|
|
|
|
exit 0
|