From: Fred T. Hamster Date: Sat, 14 Jan 2012 04:35:34 +0000 (-0800) Subject: less noisy now, also seems to work. X-Git-Tag: 2.140.90~1684 X-Git-Url: https://feistymeow.org/gitweb/?a=commitdiff_plain;h=c40ebff9dd672f460762b44dfa5ee81700ff7fe8;p=feisty_meow.git less noisy now, also seems to work. --- diff --git a/scripts/rev_control/checkin.sh b/scripts/rev_control/checkin.sh index b81c85e6..54b26e8a 100644 --- a/scripts/rev_control/checkin.sh +++ b/scripts/rev_control/checkin.sh @@ -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