Skip to content

Commit

Permalink
Fix shell syntax
Browse files Browse the repository at this point in the history
== is bash, dont use that, only =

Signed-off-by: 1000TurquoisePogs <[email protected]>
  • Loading branch information
1000TurquoisePogs authored Oct 11, 2023
1 parent fb275ae commit 0bdf3b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/configure.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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}"
Expand Down

0 comments on commit 0bdf3b7

Please sign in to comment.