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
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"
##############