Skip to content

Commit

Permalink
Merge pull request #283 from zowe/bugfix/shell-config-syntax
Browse files Browse the repository at this point in the history
Fix shell syntax
  • Loading branch information
1000TurquoisePogs authored Oct 11, 2023
2 parents fb275ae + c33463a commit c221053
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ All notable changes to the Zlux App Server package will be documented in this fi

## v2.12.0
- enhancement: new versions of components can change the location of their plugins, as the app-server will now re-inspect the plugin locations on each startup. (#280)
- bugfix: Removed error message "components/app-server/bin/configure.sh 26: .: FSUM6807 expression syntax error" seen in startup of Zowe in v2.11.0, caused by incorrect shell syntax. (#283)


## v2.11.0
Expand Down
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 c221053

Please sign in to comment.