trying to track down non-reporting of missing visual studio compiler.
[feisty_meow.git] / scripts / rev_control / report_new_files.sh
1 #!/bin/bash
2
3
4
5 # a simple script for updating a set of folders on a usb stick from subversion or git.  currently
6 # just runs with no parameters and expects to get all archives from wherever the files originally
7 # came from.
8 for i in * ; do
9   if [ -d "$i" ]; then
10     pushd $i
11     # only update if we see a repository living there.
12     if [ -d ".svn" ]; then
13       bash $FEISTY_MEOW_SCRIPTS/rev_control/svnapply.sh \? echo
14     fi
15     popd
16   fi
17 done