Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/deploy-review-app.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/deploy-review-app.sh b/scripts/deploy-review-app.sh
index ea716099..43b99c80 100755
--- a/scripts/deploy-review-app.sh
+++ b/scripts/deploy-review-app.sh
@@ -20,7 +20,7 @@ function with_backoff {
local attempt=0
local exitCode=0
- while [[ $attempt < $max_attempts ]]
+ while [[ $attempt -lt $max_attempts ]]
do
"$@"
exitCode=$?