diff options
author | Jay Satiro <raysatiro@yahoo.com> | 2016-05-23 02:42:12 -0400 |
---|---|---|
committer | Jay Satiro <raysatiro@yahoo.com> | 2016-05-23 02:42:12 -0400 |
commit | 1577bfa35ba3bc7815992f3de947a6afb844daf1 (patch) | |
tree | b226b9424a0b819b73b9999e71d3ed0b1434c167 /scripts | |
parent | 79fde56ae317a671b74742df3f1d59ce93192013 (diff) | |
download | curl-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')
-rwxr-xr-x | scripts/contributors.sh | 2 |
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'| \ |