From: Chris Koeritz Date: Mon, 9 Oct 2017 00:18:41 +0000 (-0400) Subject: switching some orders around X-Git-Tag: 2.140.90~149 X-Git-Url: https://feistymeow.org/gitweb/?a=commitdiff_plain;h=8a77c232cea62e0991cddef648bfbd409595b81a;p=feisty_meow.git switching some orders around feisty checkin should be first in list, and now it seems to be. --- diff --git a/scripts/rev_control/checkin.sh b/scripts/rev_control/checkin.sh index 0631e230..e7b7c6cf 100644 --- a/scripts/rev_control/checkin.sh +++ b/scripts/rev_control/checkin.sh @@ -9,13 +9,17 @@ source "$FEISTY_MEOW_SCRIPTS/rev_control/version_control.sh" echo "committing repositories at: $(date)" -if [ "$OS" != "Windows_NT" ]; then - # first get individual folders. - checkin_list $HOME $(dirname $FEISTY_MEOW_APEX) -else - checkin_list $HOME c:/ d:/ e:/ +FULL_LIST="$(dirname $FEISTY_MEOW_APEX) $HOME" +#if [ "$OS" != "Windows_NT" ]; then +# # first get individual folders. +# checkin_list $(dirname $FEISTY_MEOW_APEX) $HOME +#else (end old) +if [ "$OS" == "Windows_NT" ]; then + FULL_LIST+=" c:/ d:/ e:/" fi +checkin_list $FULL_LIST + ############## # regenerate the scripts after checking in, since this could mean a modified version diff --git a/scripts/rev_control/getem.sh b/scripts/rev_control/getem.sh index ace37be8..8c5ace78 100644 --- a/scripts/rev_control/getem.sh +++ b/scripts/rev_control/getem.sh @@ -35,11 +35,14 @@ rm -f "$TMPO_CHK" echo "getting repositories at: $(date)" # perform the checkouts as appropriate per OS. -if [ "$OS" != "Windows_NT" ]; then - checkout_list $HOME /usr/local 2>&1 | tee -a "$TMPO_CHK" -else - checkout_list $HOME c:/ d:/ e:/ 2>&1 | tee -a "$TMPO_CHK" +FULL_LIST="$(dirname $FEISTY_MEOW_APEX) $HOME" +#if [ "$OS" != "Windows_NT" ]; then +# checkout_list $HOME /usr/local 2>&1 | tee -a "$TMPO_CHK" +#else +if [ "$OS" == "Windows_NT" ]; then + FULL_LIST+="c:/ d:/ e:/" fi +checkout_list $FULL_LIST 2>&1 | tee -a "$TMPO_CHK" ##############