From f766f26c62376a2f5da050227e28a76a3ce7f27c Mon Sep 17 00:00:00 2001 From: tschettervictor <85497460+tschettervictor@users.noreply.github.com> Date: Sun, 5 Jan 2025 20:15:01 -0700 Subject: [PATCH] common: move export to after for loop --- 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 4778d9ab..f48f5c88 100644 --- a/usr/local/share/bastille/common.sh +++ b/usr/local/share/bastille/common.sh @@ -164,9 +164,9 @@ set_target() { fi TARGET="${TARGET} ${_jail}" JAILS="${JAILS} ${_jail}" - export TARGET - export JAILS done + export TARGET + export JAILS fi }