fix for updating cvs.
[feisty_meow.git] / scripts / rev_control / checkin.sh
index b81c85e6639b962eefa1312edaaf99e168826fde..4a747e76e399e4f2fb24ddd32d88f414038c1f12 100644 (file)
@@ -3,14 +3,12 @@
 # checks in all our commonly used folders.
 # note: fred specific.
 
-source "$SHELLDIR/rev_control/rev_control.sh"
+source "$FEISTY_MEOW_SCRIPTS/rev_control/rev_control.sh"
 
 # selects the method for check-in based on where we are.
 function do_checkin()
 {
   local directory="$1"; shift
-echo dir is $directory
-echo cur dir is $(pwd)
   if [ -d "CVS" ]; then
     # this appears to be cvs.
     pushd "$directory/.." &>/dev/null
@@ -29,13 +27,12 @@ echo cur dir is $(pwd)
 function checkin_list {
   local list=$*
   for i in $list; do
-    for j in $i/feisty_meow $i/hoople $i/hoople2 $i/quartz $i/web $i/yeti $i/xsede/xsede_tests $i/xsede/code/cak0l/trunk ; do
+    for j in $i/feisty_meow $i/hoople1 $i/hoople2 $i/quartz $i/web $i/yeti $i/xsede/xsede_tests $i/xsede/code/cak0l/trunk ; do
       if [ ! -d "$j" ]; then continue; fi
 
       pushd $j &>/dev/null
-      folder=$j
-      echo "checking in '$folder'..."
-      do_checkin $folder
+      echo "checking in '$j'..."
+      do_checkin $j
       popd &>/dev/null
     done
   done