first check-in of feisty meow codebase. many things broken still due to recent
[feisty_meow.git] / scripts / rev_control / update_these.sh
1 #!/bin/bash
2 # a simple script for updating a set of folders on a usb stick from
3 # subversion.  currently just runs with no parameters and expects to
4 # get all archives from wherever the files originally came from.
5 for i in * ; do
6   if [ -d "$i" ]; then
7     pushd $i
8     if [ -d ".svn" ]; then
9       # only update if we see a repository living here.
10       svn update .
11     fi
12     popd
13   fi
14 done