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