summaryrefslogtreecommitdiffstats
path: root/site/bin/sync
blob: 65b3380f195c6d0ac5d684dc9feeaab671728d1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
PATH="$PATH:/usr/local/bin"
export PATH

# Cleanup in case something went wrong from last time
# This was happening frequently with all svn changes
(cd "/www/tuscany.apache.org/"; svn cleanup --quiet)

# 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