Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
klaxalk committed Nov 15, 2023
1 parent bccff4e commit 05e9eb1
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .ci/get_test_matrix.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ REPOS=$(./.ci/parse_yaml.py $YAML_FILE $ARCH)

FIRST=true

echo "["
echo -n "["

echo "$REPOS" | while IFS= read -r REPO; do

Expand All @@ -30,7 +30,12 @@ echo "$REPOS" | while IFS= read -r REPO; do
continue
fi

echo "$PACKAGE,"
if $FIRST; then
echo -n "$PACKAGE"
FIRST=false
else
echo -n ", $PACKAGE"
fi

done

Expand Down

0 comments on commit 05e9eb1

Please sign in to comment.