turned off debugging noise
authorChris Koeritz <fred@gruntose.com>
Mon, 26 Sep 2022 18:40:48 +0000 (14:40 -0400)
committerChris Koeritz <fred@gruntose.com>
Mon, 26 Sep 2022 18:40:48 +0000 (14:40 -0400)
scripts/core/loadfm.sh

index 8911b4610107345c3afe3c14a16089954beb598f..de5b71155b50f8c2a21f9037d9270e017c93536e 100755 (executable)
@@ -9,27 +9,25 @@
 
 ORIGINATING_FOLDER="$( \cd "$(\dirname "$0")" && /bin/pwd )"
 export CORE_SCRIPTS_DIR="$(echo "$ORIGINATING_FOLDER" | tr '\\\\' '/' )"
-echo core scripts dir is $CORE_SCRIPTS_DIR
+#echo core scripts dir is $CORE_SCRIPTS_DIR
 
 THIS_TOOL_NAME="$(basename "$0")"
 
 pushd "$CORE_SCRIPTS_DIR/../.." &>/dev/null
 export FEISTY_MEOW_APEX="$(/bin/pwd)"
-echo feisty apex is now FEISTY_MEOW_APEX=$FEISTY_MEOW_APEX
+popd &> /dev/null
+echo "feisty meow apex is '$FEISTY_MEOW_APEX'"
 
 #hmmm: actually this should run the reconfigure script first!
 #      then we would be semi-bulletproof and wouldn't actually have
 #      to make users run that as first step?
 
 bash --init-file <(echo "\
-echo "subshell sees feisty meow apex as $FEISTY_MEOW_APEX"; \
 bash "$CORE_SCRIPTS_DIR/reconfigure_feisty_meow.sh"; \
 if [ $? -ne 0 ]; then echo "error--reconfiguring feisty meow environment failed."; fi; \
 source "$CORE_SCRIPTS_DIR/launch_feisty_meow.sh"; \
 if [ $? -ne 0 ]; then echo "error--launching feisty meow environment failed."; fi; \
 ")
 
-popd &> /dev/null
-
 ####