switching some orders around
authorChris Koeritz <fred@gruntose.com>
Mon, 9 Oct 2017 00:18:41 +0000 (20:18 -0400)
committerChris Koeritz <fred@gruntose.com>
Mon, 9 Oct 2017 00:18:41 +0000 (20:18 -0400)
feisty checkin should be first in list, and now it seems to be.

scripts/rev_control/checkin.sh
scripts/rev_control/getem.sh

index 0631e2309fb040db807200f5281089f8ee5f77dc..e7b7c6cfcd46d81be74a34943cd83f184c2ad027 100644 (file)
@@ -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
index ace37be86673145800212ad702c669387b50def9..8c5ace7828aa11821f96dbd5be4be6537321dac2 100644 (file)
@@ -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"
 
 ##############