Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix shell syntax #283

Merged
merged 2 commits into from
Oct 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading