7 lines
197 B
Bash
Executable file
7 lines
197 B
Bash
Executable file
#!/bin/sh
|
|
|
|
rm -rf ./public
|
|
hugo --minify || exit $?
|
|
gzip --best -rk public || exit $?
|
|
fd . public -tf -E '*.gz' -x brotli -k {} || exit $?
|
|
rsync -rvz --delete ./public/ wires.systems:/var/www/html
|