From 8a6c1f59a7c0ba34992c02c18558d3742cae204c Mon Sep 17 00:00:00 2001 From: Nathaniel Landau Date: Sat, 7 Feb 2015 11:13:07 -0500 Subject: [PATCH] Fixed fucntion for strict variable checking --- scriptTemplate.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scriptTemplate.sh b/scriptTemplate.sh index b8757fa..52003e2 100755 --- a/scriptTemplate.sh +++ b/scriptTemplate.sh @@ -210,7 +210,7 @@ trap trapCleanup INT TERM set -o errexit # Exit on empty variable -if [ "${strict}"="1" ]; then +if [ "${strict}" = "1" ]; then set -o nounset fi