From 01586e1aa14820aafb2520467ca2cf71b105dbde Mon Sep 17 00:00:00 2001 From: tschettervictor <85497460+tschettervictor@users.noreply.github.com> Date: Sat, 22 Nov 2025 15:13:02 -0500 Subject: [PATCH] export: fix missing [ --- usr/local/share/bastille/export.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/local/share/bastille/export.sh b/usr/local/share/bastille/export.sh index 34f0cc75..fccdd5b7 100644 --- a/usr/local/share/bastille/export.sh +++ b/usr/local/share/bastille/export.sh @@ -257,7 +257,7 @@ elif [ "${AUTO}" -eq 1 ] && [ "${LIVE}" -eq 1 ]; then fi # Don't allow LIVE with TXZ_EXPORT or TGZ_EXPORT -if { [ "${TXZ_EXPORT}" -eq 1 ] || [ "${TGZ_EXPORT}" -eq 1 ] || "${TZST_EXPORT}" -eq 1 ]; } && [ "${LIVE}" -eq 1 ]; then +if { [ "${TXZ_EXPORT}" -eq 1 ] || [ "${TGZ_EXPORT}" -eq 1 ] || [ "${TZST_EXPORT}" -eq 1 ]; } && [ "${LIVE}" -eq 1 ]; then error_exit "[ERROR]: Archive mode cannot be used with [-l|--live]." fi