From ea043702e96aa8f516f98e84c58839121ffba464 Mon Sep 17 00:00:00 2001 From: tteckster Date: Sat, 23 Oct 2021 16:47:48 -0400 Subject: [PATCH] Update debian11_setup.sh --- debian11_setup.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/debian11_setup.sh b/debian11_setup.sh index 31b34571..45560d4f 100644 --- a/debian11_setup.sh +++ b/debian11_setup.sh @@ -2,9 +2,9 @@ # Setup script environment set -o errexit #Exit immediately if a pipeline returns a non-zero status -set -o errtrace #Trap ERR from shell functions, command substitutions, and commands from subshell +#set -o errtrace #Trap ERR from shell functions, command substitutions, and commands from subshell set -o nounset #Treat unset variables as an error -set -o pipefail #Pipe will exit with last non-zero status if applicable +#set -o pipefail #Pipe will exit with last non-zero status if applicable shopt -s expand_aliases alias die='EXIT=$? LINE=$LINENO error_exit' trap die ERR