7 lines
190 B
Bash
7 lines
190 B
Bash
|
#!/bin/sh
|
||
|
set -eu
|
||
|
cd "$(dirname "$0")"/..
|
||
|
set -x
|
||
|
# Do not use --delete since subdirectories come from other git repos.
|
||
|
rsync -vcr www/ alpha.servers.scheme.org:/production/conservatory/www/
|