Skip to content

Commit 9886afc

Browse files
authored
Fix release notes (#422)
1 parent 0bec34b commit 9886afc

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/scripts/generate-release-contributors.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,8 @@ query($q: String!, $endCursor: String) {
7878
| sed 's/^\["//' \
7979
| sed 's/".*//')
8080

81-
echo "$contributors1" "$contributors2" \
81+
# echo separately to avoid space separator between args when contributors2 is empty
82+
{ echo "$contributors1"; echo "$contributors2"; } \
8283
| sed 's/ /\n/g' \
8384
| sort -uf \
8485
| grep -v codecov \

0 commit comments

Comments
 (0)