We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7084e6e commit dd2e5c1Copy full SHA for dd2e5c1
1 file changed
bin/mkrelease
@@ -245,8 +245,9 @@ if [ -d ../coverage ]; then
245
rsync -a static/coverage/ ../coverage/$VER/
246
fi
247
248
-contributors=$(echo "$changes" | gawk '/^ \* Merged in \[[0-9]+\] from [^: ]+/ {sub(":",""); print $6;}' )
249
-note "Contributors: $contributors"
+contributors=$(echo "$changes" | gawk '/^ \* Merged in \[[0-9]+\] from [^: ]+/ {sub(":",""); print $6;}' | sort | uniq)
+note "Contributors:
250
+$contributors"
251
252
note "Setting the current time on the release notes in the changelog file ..."
253
$do sed -r -i -e "1,/^ -- /s/([A-Za-z-]+ <[a-z0-9.-]+@[a-z0-9.-]+> ).*$/\1$(TZ=UTC date +'%d %b %Y %H:%M:%S %z')/" changelog
0 commit comments