8 lines
270 B
Plaintext
8 lines
270 B
Plaintext
|
#!/bin/sh
|
||
|
USER=root
|
||
|
HOST=digitalstudium.com
|
||
|
DIR=/srv/$HOST # the directory where your web site files should go
|
||
|
|
||
|
hugo --minify && rsync -avz --delete public/ ${USER}@${HOST}:${DIR} # this will delete everything on the server that's not in the local public folder
|
||
|
|
||
|
exit 0
|