11 lines
128 B
Bash
Executable file
11 lines
128 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
make
|
|
rsync \
|
|
-a \
|
|
--delete \
|
|
--progress \
|
|
build/doc \
|
|
'root@shione:/var/www/html/www.shione.net/'
|