wrapping the "okay but show output" results better
authorFred Hamster <fred@gruntose.com>
Tue, 17 Dec 2024 01:18:21 +0000 (20:18 -0500)
committerFred Hamster <fred@gruntose.com>
Tue, 17 Dec 2024 01:18:21 +0000 (20:18 -0500)
scripts/core/variables.sh
scripts/customize/fred/scripts/jobby/archie_grabber_uva.sh
scripts/testing/squelch_unless_error.sh

index 3304ba796df8848cf6cabef32422f55b7191ecd0..8a7a5fae3d56172723ac7b20d2c3ebafc21f90f5 100644 (file)
@@ -75,6 +75,11 @@ if [ -z "$CORE_VARIABLES_LOADED" ]; then
   ##############
   
   # start with some simpler things.
+
+  # special protocol for return values--if we see this, it means we should still show
+  # the standard output and there was no actual error.  implemented in
+  # squelch_unless_error.
+  define_yeti_variable MAGICAL_FEISTY_MEOW_OKAY_RETURN_VALUE=242
   
 #hmmm: this needs to come from some configuration item.  especially for installs.
 define_yeti_variable DEFAULT_FEISTYMEOW_ORG_DIR=/opt/feistymeow.org
index ad8244473c0a255ede6eda9c67312fef0512f9f3..9703adc154bd6d4175b24fffe212edce578f5634 100644 (file)
@@ -43,7 +43,8 @@ popd &>/dev/null
 popd &>/dev/null
 #nope.  we do not want to signal an error when we have already caught it.
 #exit $retval
-exit 0
+# special exit value means "show the output but there was no error".
+exit $MAGICAL_FEISTY_MEOW_OKAY_RETURN_VALUE
 ' > $ARCHIVE_SNAGGER_COMMAND
 
 #s
index 12f9bb86af32b67dd25428e53ddead7e9772262a..f9fdf01bb186e92d3441c34809e8c22101dfcd04 100644 (file)
@@ -16,10 +16,17 @@ eval "${@}" >"$newout" 2>"$newerr"
 retval=$?
 
 if [ $retval != 0 ]; then
-  # there was an error during the execution of the command.
-  cat "$newout"
-  cat "$newerr" >&2
-  echo "An error was returned during execution of: ${@}" >&2
+  if [ $retval -eq $MAGICAL_FEISTY_MEOW_OKAY_RETURN_VALUE ]; then
+    # special standard here means that we will still show the output, but there was no actual error.
+    cat "$newout"
+    # reset to a non-error for our special case.
+    retval=0
+  else
+    # there was an actual error during the execution of the command.
+    cat "$newout"
+    cat "$newerr" >&2
+    echo "An error was returned during execution of: ${@}" >&2
+  fi
 fi
 
 # clean up.