aboutsummaryrefslogtreecommitdiff
path: root/dev/ci/ci-basic-overlay.sh
diff options
context:
space:
mode:
authorcoqbot-app[bot]2020-12-15 12:01:47 +0000
committerGitHub2020-12-15 12:01:47 +0000
commit46c55ced3d1a78f63b3b50fc12d9760663e87e57 (patch)
tree3fa4327070d60840be3aa5b314991d2f526b01f7 /dev/ci/ci-basic-overlay.sh
parent6c35e25cfa8fd47a7aa856de005e7778b5ca0e21 (diff)
parent477cba2c8906c2007b6aa6c9aa2b352d096ec844 (diff)
Merge PR #13632: [ci] Update pin ci script
Reviewed-by: SkySkimmer
Diffstat (limited to 'dev/ci/ci-basic-overlay.sh')
-rwxr-xr-xdev/ci/ci-basic-overlay.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/dev/ci/ci-basic-overlay.sh b/dev/ci/ci-basic-overlay.sh
index be819616e2..dd683c96a9 100755
--- a/dev/ci/ci-basic-overlay.sh
+++ b/dev/ci/ci-basic-overlay.sh
@@ -8,7 +8,7 @@ declare -a projects # the list of project repos that can be be overlayed
# checks if the given argument is a known project
function is_in_projects {
local rc=1
- for x in ${!projects[@]}; do
+ for x in ${projects[@]}; do
if [ "$1" = "$x" ]; then rc=0; fi;
done
return rc