X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=scripts%2Frev_control%2Fcheckin.sh;h=23532985e5046ae4615ad33fad4580be4608383a;hb=bb71dc6078fea69ae2d237ac7d4da1b3531fecc9;hp=b81c85e6639b962eefa1312edaaf99e168826fde;hpb=e1beec97f7b8834548d74782e577684fe16910e4;p=feisty_meow.git diff --git a/scripts/rev_control/checkin.sh b/scripts/rev_control/checkin.sh index b81c85e6..23532985 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 @@ -29,13 +27,12 @@ echo cur dir is $(pwd) 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 + for j in $i/feisty_meow $i/hoople1 $i/hoople2 $i/quartz $i/web $i/yeti $i/xsede/xsede_tests $i/xsede/code/cak0l/trunk ; do 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