From e95e2feb1d8a679a9283a8385ead9f47e2f21c72 Mon Sep 17 00:00:00 2001 From: tteckster Date: Sat, 23 Oct 2021 17:01:09 -0400 Subject: [PATCH] Update debian11_container.sh --- debian11_container.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian11_container.sh b/debian11_container.sh index 5c1717de..6ebc5687 100644 --- a/debian11_container.sh +++ b/debian11_container.sh @@ -13,7 +13,7 @@ done 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 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