f18f5e0fbb
Also show rsync progress.
8 lines
113 B
Bash
Executable file
8 lines
113 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
cd -- build
|
|
make doc
|
|
rsync -a --delete --progress doc/html/ 'web@shione.vermwa.re:'
|
|
cd -- ..
|