X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=scripts%2Frev_control%2Fcheckin.sh;h=54b26e8a10b0003a025c2889e4234515b45b07e6;hb=c40ebff9dd672f460762b44dfa5ee81700ff7fe8;hp=b81c85e6639b962eefa1312edaaf99e168826fde;hpb=e1beec97f7b8834548d74782e577684fe16910e4;p=feisty_meow.git 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