Alternc  latest
Alternc logiel libre pour l'hébergement
 All Classes Namespaces Files Functions Variables Pages
svnup.sh
Go to the documentation of this file.
1 #!/bin/bash
2 
3 # If you have all the AlternC's repositories in one folder,
4 # like alternc/trunk/ alternc-mailman/trunk/ ...
5 # this script do svn update on all of them ;)
6 
7 pushd ../..
8 
9 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
10 do
11  if [ -d "$i" ]; then
12  pushd $i
13  svn up
14  popd
15  fi
16 done
17 
18 popd