Skip to content
This repository has been archived by the owner on May 6, 2021. It is now read-only.

Commit

Permalink
Fix counter waiting for dc
Browse files Browse the repository at this point in the history
cnt+=1 just concat 1 to the string not increasing it,
  • Loading branch information
chmouel committed Dec 5, 2018
1 parent 5a55183 commit 8612a81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openshift/deploy-openshift-dev.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ function waitForDC() {
}

sleep 2
cnt+=1
(( cnt++ ))
done
}

Expand Down

0 comments on commit 8612a81

Please sign in to comment.