Skip to content

Commit

Permalink
Fix typos in startCorda.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
henrikr3 committed Jun 30, 2020
1 parent 0f54679 commit 93939ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker-images/corda_image_ent/startCorda.sh
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ checkIfIdentityManagerIsUpAndRunning () {
curl -m5 -s $IDENTITY_MANAGER_ADDRESS/status > /dev/null
result=$?

if [ $result -eq 0]; then
if [ $result -eq 0 ]; then
echoMessage "Identity Manager is up and running"
else
echo -e "${YELLOW}Warning${NC}"
Expand All @@ -96,7 +96,7 @@ checkIfNetworkMapIsUpAndRunning () {
let EXIT_CODE=$?
result=$?

if [ $result -eq 0]; then
if [ $result -eq 0 ]; then
echoMessage "Network map is up and running"
else
echo -e "${YELLOW}Warning${NC}"
Expand Down

0 comments on commit 93939ce

Please sign in to comment.