create: Override shellcheck for sourcing variable

This commit is contained in:
tschettervictor
2025-02-28 17:22:46 -07:00
committed by GitHub
parent 320bcde2b2
commit 9e9cef90d4

View File

@@ -691,10 +691,12 @@ while [ $# -gt 0 ]; do
usage
else
info "Using custom config: ${OPT_CONFIG}"
# shellcheck disable=SC1090
. /usr/local/etc/bastille/${OPT_CONFIG}
fi
else
info "Using custom config: ${OPT_CONFIG}"
# shellcheck disable=SC1090
. "${OPT_CONFIG}"
fi
shift 2