We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b869bc commit 6c50c46Copy full SHA for 6c50c46
1 file changed
.github/scripts/generate-release-contributors.sh
@@ -78,7 +78,8 @@ query($q: String!, $endCursor: String) {
78
| sed 's/^\["//' \
79
| sed 's/".*//')
80
81
-echo "$contributors1" "$contributors2" \
+# echo separately to avoid space separator between args when contributors2 is empty
82
+{ echo "$contributors1"; echo "$contributors2"; } \
83
| sed 's/ /\n/g' \
84
| sort -uf \
85
| grep -v codecov \
0 commit comments