clean-ups, better file names.
[feisty_meow.git] / scripts / rev_control / checkin.sh
index b81c85e6639b962eefa1312edaaf99e168826fde..18b459a01285316e3f49efd759e4803087d11d05 100644 (file)
@@ -3,19 +3,18 @@
 # 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
-    cvs ci "$directory"
-    popd &>/dev/null
+#    pushd "$directory/.." &>/dev/null
+    cvs ci .
+###"$directory"
+#    popd &>/dev/null
   elif [ -d ".svn" ]; then
     svn ci .
   elif [ -d ".git" ]; then
@@ -29,13 +28,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