Skip to content

Commit

Permalink
Merge pull request #402 from perftool-incubator/dev-kmr
Browse files Browse the repository at this point in the history
bugfix for crucible-release workflow
  • Loading branch information
k-rister authored Sep 25, 2024
2 parents c52363c + 75208cf commit e409cf5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/crucible-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ jobs:
# get 3rd column (repo URL) without the starting '/' (remove first char),
# so repo urls /a /b /c are extracted to a b c
# and add to a bash array ( a b c )
projects=( $(jq -r '.official[] | select(.name != "crucible") | .name) )
projects=( $(jq -r '.official[] | select(.name != "crucible") | .name' repos.json) )
# builtin implict join array "a","b","c" (double quotes for a valid json)
printf -v list '"%s",' "${projects[@]}"
# convert to a comma separated list ["a","b","c"]
Expand Down

0 comments on commit e409cf5

Please sign in to comment.