Fixed fucntion for strict variable checking

This commit is contained in:
Nathaniel Landau
2015-02-07 11:13:07 -05:00
parent 98c4110e51
commit 8a6c1f59a7

View File

@@ -210,7 +210,7 @@ trap trapCleanup INT TERM
set -o errexit set -o errexit
# Exit on empty variable # Exit on empty variable
if [ "${strict}"="1" ]; then if [ "${strict}" = "1" ]; then
set -o nounset set -o nounset
fi fi