Skip to content

Commit

Permalink
Update configure.sh
Browse files Browse the repository at this point in the history
Fix typo

Signed-off-by: 1000TurquoisePogs <[email protected]>
  • Loading branch information
1000TurquoisePogs authored Apr 20, 2022
1 parent 6ef6c09 commit e19bd1d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions bin/configure.sh
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,12 @@ if [ "${ZWE_zowe_certificate_keystore_type}" = "JCERACFKS" ]; then
export "${HTTPS_PREFIX}keyring=${ZWE_zowe_certificate_keystore_file}"
case "${ZWE_zowe_certificate_keystore_file}" in
safkeyring:////*)
export ZWED_node_mediationLayer_enabled=$(echo $ZWE_zowe_certificate_keystore_file | cut -c 16-)
trimmed=$(echo $ZWE_zowe_certificate_keystore_file | cut -c 16-)
export "${HTTPS_PREFIX}keyring=$trimmed"
;;
safkeyring://*)
export ZWED_node_mediationLayer_enabled=$(echo $ZWE_zowe_certificate_keystore_file | cut -c 14-)
trimmed=$(echo $ZWE_zowe_certificate_keystore_file | cut -c 14-)
export "${HTTPS_PREFIX}keyring=$trimmed"
;;
esac
else
Expand Down

0 comments on commit e19bd1d

Please sign in to comment.