less noisy now, also seems to work.
authorFred T. Hamster <fred@zooty.koeritz.com>
Sat, 14 Jan 2012 04:35:34 +0000 (20:35 -0800)
committerFred T. Hamster <fred@zooty.koeritz.com>
Sat, 14 Jan 2012 04:35:34 +0000 (20:35 -0800)
scripts/rev_control/checkin.sh

index b81c85e6639b962eefa1312edaaf99e168826fde..54b26e8a10b0003a025c2889e4234515b45b07e6 100644 (file)
@@ -9,8 +9,6 @@ source "$SHELLDIR/rev_control/rev_control.sh"
 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
@@ -33,9 +31,8 @@ function checkin_list {
       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