updated scheme for locating revision control assets; uses a list (in a
[feisty_meow.git] / scripts / rev_control / checkin.sh
index b81c85e6639b962eefa1312edaaf99e168826fde..a730031fc4df9e44a51174e1a30a7f418b59b5fc 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
@@ -26,16 +25,22 @@ echo cur dir is $(pwd)
   fi
 }
 
+# checks in all the folders in a specified list.
 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
+echo whole list is ${REPOSITORY_LIST}
+    # turn repo list back into an array.
+    eval "repository_list=( ${REPOSITORY_LIST[*]} )"
+    for j in "${repository_list[@]}"; do
+      # add in the directory component.
+      j="$i/$j"
+echo here the dir thing is: $j
       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