renaming frenzy to make the revision control tools useful. sneakily renamed the...
[feisty_meow.git] / scripts / rev_control / rev_update.sh
1 #!/bin/bash
2 # a simple script for updating a set of folders from subversion or git.
3 # this can take a directory as parameter, but will default to the current
4 # working directory.  all the directories under the passed directory will
5 # be examined.
6
7 dir="$1"; shift
8 if [ -z "$dir" ]; then
9   dir=.
10 fi
11
12 source "$FEISTY_MEOW_SCRIPTS/rev_control/version_control.sh"
13
14 pushd "$dir" &>/dev/null
15
16 for i in * ; do
17   if [ -d "$i" ]; then
18     echo "[$i]"
19     do_update "$i"
20 #    pushd $i &>/dev/null
21 #    # only update if we see a repository living there.
22 #    if [ -d ".svn" ]; then
23 #      svn update .
24 #    elif [ -d ".git" ]; then
25 #      git pull 
26 #    elif [ -d "CVS" ]; then
27 #      cvs update .
28 #    fi
29 #    popd &>/dev/null
30     echo "======="
31   fi
32 done
33
34 popd &>/dev/null
35