This commit is contained in:
2023-11-25 02:20:26 -06:00
parent d760fc07ae
commit e00eb2c791
4 changed files with 5 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
#!/bin/sh -x
#!/bin/sh -ex
#
# 01. "should check code directly not $?"
# shellcheck disable=2181
@@ -18,7 +18,7 @@
# ===================================================
echo "Starting, attempting to load globals.sh"
GLOBALS_FILE="$PWD/lib/globals.sh"
GLOBALS_FILE="$PWD/globals.sh"
if [ -e "$GLOBALS_FILE" ] ; then
chmod +x "$GLOBALS_FILE"
. "$GLOBALS_FILE"