X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=scripts%2Frev_control%2Fcheckin.sh;h=18b459a01285316e3f49efd759e4803087d11d05;hb=65ceb7d51f096b446826c0ab5bdaa9550abab2c3;hp=b81c85e6639b962eefa1312edaaf99e168826fde;hpb=e1beec97f7b8834548d74782e577684fe16910e4;p=feisty_meow.git diff --git a/scripts/rev_control/checkin.sh b/scripts/rev_control/checkin.sh index b81c85e6..18b459a0 100644 --- a/scripts/rev_control/checkin.sh +++ b/scripts/rev_control/checkin.sh @@ -3,19 +3,18 @@ # checks in all our commonly used folders. # note: fred specific. -source "$SHELLDIR/rev_control/rev_control.sh" +source "$FEISTY_MEOW_SCRIPTS/rev_control/rev_control.sh" # selects the method for check-in based on where we are. 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 - cvs ci "$directory" - popd &>/dev/null +# pushd "$directory/.." &>/dev/null + cvs ci . +###"$directory" +# popd &>/dev/null elif [ -d ".svn" ]; then svn ci . elif [ -d ".git" ]; then @@ -29,13 +28,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