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:
authorSarah German <sgerman@gitlab.com>2022-12-16 19:07:15 +0300
committerSarah German <sgerman@gitlab.com>2022-12-16 19:07:15 +0300
commite1560cc367011242883d553b877431b12f835776 (patch)
treede0c841e2b371a920929af49a914d31bce664203 /scripts
parentffc2e0d64e3ca485d592b59476e766b62119162a (diff)
parentd3f3be78bebced506def373977ecf510b5519715 (diff)
Merge branch 'tle/bump-shellcheck-0.9.0' into 'main'
Bump shellcheck from 0.8.0 to 0.9.0 See merge request https://gitlab.com/gitlab-org/gitlab-docs/-/merge_requests/3378 Merged-by: Sarah German <sgerman@gitlab.com> Approved-by: Sarah German <sgerman@gitlab.com> Co-authored-by: Tan Le <tle@gitlab.com>
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=$?