From 0bdf3b74e6b38e597f799add3e5a3cb86adecebb Mon Sep 17 00:00:00 2001 From: 1000TurquoisePogs Date: Wed, 11 Oct 2023 09:51:29 -0500 Subject: [PATCH] Fix shell syntax == is bash, dont use that, only = Signed-off-by: 1000TurquoisePogs --- bin/configure.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/configure.sh b/bin/configure.sh index b78fdd7..36276d8 100755 --- a/bin/configure.sh +++ b/bin/configure.sh @@ -23,8 +23,8 @@ fi cd ${COMPONENT_HOME}/share/zlux-app-server/bin -if [ "$ZWE_components_gateway_enabled" == "true" ]; then - if [ "$ZWE_components_zss_enabled" == "true" ]; then +if [ "$ZWE_components_gateway_enabled" = "true" ]; then + if [ "$ZWE_components_zss_enabled" = "true" ]; then if [ "${ZWE_RUN_ON_ZOS}" != "true" ]; then zss_def_template="zss.apiml_static_reg.yaml.template" export ZSS_PORT="${ZWE_components_zss_port}"