2012-08-21 17:07:04 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2012-08-21 17:16:07 +00:00
|
|
|
# If you have all the AlternC's repositories in one folder,
|
|
|
|
# like alternc/trunk/ alternc-mailman/trunk/ ...
|
|
|
|
# this script do svn update on all of them ;)
|
|
|
|
|
2012-08-21 17:07:04 +00:00
|
|
|
pushd ../..
|
|
|
|
|
|
|
|
for i in alternc alternc-bounces alternc-jabber alternc-munin alternc-procmail alternc-stats alternc-apps alternc-changepass alternc-mailman alternc-philesight alternc-secondarymx alternc-sympa alternc-awstats alternc-doc alternc-mergelog alternc-phpcron alternc-slavedns alternc-webalizer
|
|
|
|
do
|
|
|
|
if [ -d "$i" ]; then
|
|
|
|
pushd $i
|
|
|
|
svn up
|
|
|
|
popd
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
popd
|