From 0ddd4d98cf2e12c52de38d53926dd2331bb93122 Mon Sep 17 00:00:00 2001 From: tschettervictor <85497460+tschettervictor@users.noreply.github.com> Date: Mon, 16 Dec 2024 17:48:21 -0700 Subject: [PATCH] Fox vars --- usr/local/share/bastille/common.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr/local/share/bastille/common.sh b/usr/local/share/bastille/common.sh index 42eb4b66..be7a656a 100644 --- a/usr/local/share/bastille/common.sh +++ b/usr/local/share/bastille/common.sh @@ -93,10 +93,10 @@ check_target_is_running() { } set_target() { - if [ "{1}" = ALL ] || [ "{1}" = all]; then + if [ "${1}" = ALL ] || [ "${1}" = all ]; then target_all_jails else - TARGET="{1}" + TARGET="${1}" check_target_exists "{TARGET}" fi }