From ed558a9a7a099dea710fc42484d2799209a70b83 Mon Sep 17 00:00:00 2001 From: tschettervictor <85497460+tschettervictor@users.noreply.github.com> Date: Mon, 12 May 2025 19:36:44 -0600 Subject: [PATCH] common: Fix TARGET var --- usr/local/share/bastille/common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/local/share/bastille/common.sh b/usr/local/share/bastille/common.sh index 8c395bed..3ba0c84e 100644 --- a/usr/local/share/bastille/common.sh +++ b/usr/local/share/bastille/common.sh @@ -286,7 +286,7 @@ set_target_single() { fi fi # Exit if no jails - if [ -z "${TARGET}" ] && [ -z "${JAILS}" ]; then + if [ -z "${_TARGET}" ] && [ -z "${_JAILS}" ]; then exit 1 fi TARGET="${_TARGET}"