Skip to content
This repository was archived by the owner on Jul 18, 2023. It is now read-only.

Commit cb70ce8

Browse files
authored
Service client (#35)
* Update createproxyserviceclient.bash * Update createproxyserviceclient.bash
1 parent c98d6ca commit cb70ce8

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

scripts/createproxyserviceclient.bash

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,8 @@ echo " "
123123
if [[ -z "$kvname" ]]; then
124124
echo "Enter keyvault name that contains the fhir proxy configuration: "
125125
read kvname
126-
if [ -z "$kvname" ]]; then
126+
if [[ -z "$kvname" ]]; then
127+
127128
echo "Keyvault name must be specified"
128129
usage
129130
fi
@@ -158,7 +159,7 @@ fi
158159
if [[ -z "$genpostman" ]]; then
159160
echo "Do you want to generate a Postman Environment ? [y/n]: "
160161
read postman_answer
161-
if [[ $postman_answer = "y" ]; then
162+
if [[ $postman_answer = "y" ]]; then
162163
genpostman="yes"
163164
fi
164165
fi

0 commit comments

Comments
 (0)