Skip to content

Commit

Permalink
[ci] fix code to check if the overlay is valid
Browse files Browse the repository at this point in the history
  • Loading branch information
gares committed Dec 14, 2020
1 parent d0667eb commit c95058a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dev/ci/ci-basic-overlay.sh
Expand Up @@ -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
Expand Down

0 comments on commit c95058a

Please sign in to comment.