mirror of
https://github.com/torproject/webwml.git
synced 2024-12-16 06:49:11 +00:00
15 lines
368 B
Bash
Executable File
15 lines
368 B
Bash
Executable File
#!/bin/sh
|
|
svn update
|
|
make
|
|
# XXX should check whether make fails
|
|
|
|
# don't copy over stuff with permissions that make it useless
|
|
chmod a+r * -R
|
|
|
|
## I'm not comfortable having arbitrary people use --delete yet,
|
|
## since if they screw up it'll blow away arbitrary things.
|
|
#rsync -Pravz --delete . tor.eff.org:directory/
|
|
|
|
rsync -Pravz . tor.eff.org:/www/tor.eff.org/docs/
|
|
|