summaryrefslogtreecommitdiff
path: root/scripts/contributors.sh
diff options
context:
space:
mode:
authorJay Satiro <raysatiro@yahoo.com>2016-05-23 02:42:12 -0400
committerJay Satiro <raysatiro@yahoo.com>2016-05-23 02:42:12 -0400
commit1577bfa35ba3bc7815992f3de947a6afb844daf1 (patch)
treeb226b9424a0b819b73b9999e71d3ed0b1434c167 /scripts/contributors.sh
parent79fde56ae317a671b74742df3f1d59ce93192013 (diff)
downloadcurl-1577bfa35ba3bc7815992f3de947a6afb844daf1.tar.gz
contributors: Show GitHub username if real name unknown
Prior to this change if a GitHub contributor's real name was unknown they would be omitted from the list. Bug: https://github.com/curl/curl/issues/824
Diffstat (limited to 'scripts/contributors.sh')
-rwxr-xr-xscripts/contributors.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/contributors.sh b/scripts/contributors.sh
index 88386109f..071251524 100755
--- a/scripts/contributors.sh
+++ b/scripts/contributors.sh
@@ -50,7 +50,7 @@ cut -d: -f2- | \
cut '-d<' -f1 | \
tr , '\012' | \
sed 's/ and /\n/' | \
-sed -e 's/^ //' -e 's/ $//g'
+sed -e 's/^ //' -e 's/ $//g' -e 's/@users.noreply.github.com$/ on github/'
grep "^ [^ \(]" RELEASE-NOTES| \
sed 's/, */\n/g'| \