From c40ebff9dd672f460762b44dfa5ee81700ff7fe8 Mon Sep 17 00:00:00 2001 From: "Fred T. Hamster" Date: Fri, 13 Jan 2012 20:35:34 -0800 Subject: [PATCH] less noisy now, also seems to work. --- scripts/rev_control/checkin.sh | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) 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 -- 2.34.1