2024-12-16 23:06:33 +08:00

8 lines
253 B
Bash
Executable File

#!/bin/sh
USER=www
HOST=uniu.net.cn
DIR=www/html # the directory where your website files should go
hugo && rsync -avz --delete public/ ${USER}@${HOST}:~/${DIR} # this will delete everything on the server that's not in the local public folder
exit 0