From 941071b7900ab1d43b311d0d1276fc2faf6d605b Mon Sep 17 00:00:00 2001 From: Daniel Ceregatti Date: Fri, 15 Aug 2025 10:03:17 -0600 Subject: [PATCH] Fix wrong use of bash conditional. --- files/bin/dz-common | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/bin/dz-common b/files/bin/dz-common index 934dc09..9189e51 100755 --- a/files/bin/dz-common +++ b/files/bin/dz-common @@ -36,7 +36,7 @@ export cyan="\e[36m" export release_server_appid=223350 # Allow for the use of experimental via an environment variable -if [ ${EXPERIMENTAL} != "" ] +if [[ ${EXPERIMENTAL} != "" ]] then export release_server_appid=1042420 fi