aboutsummaryrefslogtreecommitdiff
path: root/dev/tools
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/tools
parent6c35e25cfa8fd47a7aa856de005e7778b5ca0e21 (diff)
parent477cba2c8906c2007b6aa6c9aa2b352d096ec844 (diff)
Merge PR #13632: [ci] Update pin ci script
Reviewed-by: SkySkimmer
Diffstat (limited to 'dev/tools')
-rwxr-xr-xdev/tools/pin-ci.sh6
1 files changed, 2 insertions, 4 deletions
diff --git a/dev/tools/pin-ci.sh b/dev/tools/pin-ci.sh
index dbf54d7f0a..676688bedc 100755
--- a/dev/tools/pin-ci.sh
+++ b/dev/tools/pin-ci.sh
@@ -38,9 +38,7 @@ process_development() {
# Execute the script to set the overlay variables
. $OVERLAYS
-# Find all variables declared in the base overlay of the form *_CI_GITURL
-for REPO_VAR in $(compgen -A variable | grep _CI_GITURL)
+for project in ${projects[@]}
do
- DEV=${REPO_VAR%_CI_GITURL}
- process_development $DEV
+ process_development $project
done