blob: 1aae577b571815851747bf1a9ff44e579e63d096 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
PATH="$PATH:/usr/local/bin"
export PATH
# Make sure we have the latest content
(cd "/www/tuscany.apache.org/"; svn up --quiet)
# Install the cwiki exported content
rsync -r "/www/confluence-exports/TUSCANY/" "/www/tuscany.apache.org/"
# Make sure everything is group writable
chmod -R g+w "/www/tuscany.apache.org/" > /dev/null
|