Skip to content
This repository has been archived by the owner on Nov 25, 2020. It is now read-only.

Replace all dashes with underscores in bash script #867

Merged
merged 1 commit into from
Mar 2, 2020
Merged
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
2 changes: 1 addition & 1 deletion tob-web/openshift/templates/nginx-runtime/s2i/bin/run
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ getApiUrl (){
# Results in API_URL=https://dev-demo-api.orgbook.gov.bc.ca/api/v2/
# ================================================================================
if [ ! -z "${API_SERVICE_NAME}" ]; then
_SERVICE_NAME="$(tr '[:lower:]' '[:upper:]' <<< ${API_SERVICE_NAME/-/_})"
_SERVICE_NAME="$(tr '[:lower:]' '[:upper:]' <<< ${API_SERVICE_NAME//-/_})"
_SERVICE_HOST_NAME=${_SERVICE_NAME}_SERVICE_HOST
_SERVICE_PORT_NAME=${_SERVICE_NAME}_SERVICE_PORT

Expand Down