From: Fred T. Hamster Date: Sat, 14 Jan 2012 04:40:36 +0000 (-0800) Subject: made corresponding improvements for git in mass check-out script. X-Git-Tag: 2.140.90~1683 X-Git-Url: https://feistymeow.org/gitweb/?a=commitdiff_plain;h=c4d9a08d9eda7beeb0c1c995c2734c4fdc869328;p=feisty_meow.git made corresponding improvements for git in mass check-out script. --- diff --git a/scripts/rev_control/getme.sh b/scripts/rev_control/getme.sh index 4acd84e7..eaaf7d28 100644 --- a/scripts/rev_control/getme.sh +++ b/scripts/rev_control/getme.sh @@ -24,32 +24,14 @@ function do_update() { directory="$1"; shift - # get the right modifier for the directory name. - compute_modifier "$directory" "out" - - is_svn=1 - checkout_cmd="echo unknown repository for $directory... " - - if [ "$home_system" == "true" ]; then - checkout_cmd="svn update ." - fi - - # then we pretty much ignore what we guessed, and just use the - # appropriate command for what we see inside the directory. - if [ -d "$directory/CVS" ]; then - checkout_cmd="cvs co -P -kb " - modifier= # reset the modifier, since we know we have cvs. - is_svn=0 - elif [ -d "$directory/.svn" ]; then - checkout_cmd="svn update ." - fi - - if [ $is_svn -eq 1 ]; then - pushd "$directory" &>/dev/null - $checkout_cmd - popd &>/dev/null + if [ -d "CVS" ]; then + cvs co -P -kb "$directory" + elif [ -d ".svn" ]; then + svn update . + elif [ -d ".git" ]; then + git pull else - $checkout_cmd "$modifier$directory" + echo unknown repository for $directory... fi } @@ -63,10 +45,9 @@ function checkout_list { continue fi - pushd $i &>/dev/null + pushd $j &>/dev/null echo -n "retrieving '$j'... " do_update $j -#$(basename $j) popd &>/dev/null done done