AlternC/svnup.sh

19 lines
545 B
Bash
Raw Normal View History

2012-08-21 17:07:04 +00:00
#!/bin/bash
# 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