summaryrefslogtreecommitdiff
path: root/setup.sh
diff options
context:
space:
mode:
authorDan Fedele <dan.fedele@gmail.com>2022-11-07 11:33:52 -0500
committerDan Fedele <dan.fedele@gmail.com>2022-11-07 11:33:52 -0500
commit27dc9030e0de0c6622ae3f2cde189988d4a8464a (patch)
tree78cc85e218e6367259aa0a1dd7032e9a68a31e7c /setup.sh
parentc059e2bf4d0050f7e08b38944c1065c2fde4d278 (diff)
Bugfixes
Diffstat (limited to 'setup.sh')
-rw-r--r--setup.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.sh b/setup.sh
index 5a42b91..2148bd8 100644
--- a/setup.sh
+++ b/setup.sh
@@ -5,7 +5,7 @@ set -eu
# Are we running in bash?
# Single bracket to be posix compliant in case we run in sh or something
-if [ ! -z ${BASH} ]; then
+if [ -z ${BASH} ]; then
echo "This script must be run from the Bash shell!"
exit 1
fi