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:
authorTan Le <tle@gitlab.com>2022-12-16 19:07:14 +0300
committerSarah German <sgerman@gitlab.com>2022-12-16 19:07:14 +0300
commitd3f3be78bebced506def373977ecf510b5519715 (patch)
treede02938efa4f27dca97f788b7007c9d016f24010 /scripts
parentc6fef6a3a057ea462a277389a2806cc9466b5bf4 (diff)
Bump shellcheck from 0.8.0 to 0.9.0
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=$?