12 lines
135 B
Bash
Executable file
12 lines
135 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
hugo --minify
|
|
|
|
rsync \
|
|
-a \
|
|
--delete \
|
|
--progress \
|
|
public/ \
|
|
'root@shione:/var/www/html/www.shione.net'
|