diff options
-rwxr-xr-x | contributors.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contributors.sh b/contributors.sh index 41f9cb158..153fec9e1 100755 --- a/contributors.sh +++ b/contributors.sh @@ -39,12 +39,12 @@ fi # sort all unique names # awk them into RELEASE-NOTES format git log $start..HEAD | \ -egrep '(Author|Commit|by):' | \ +egrep -i '(Author|Commit|by):' | \ cut -d: -f2- | \ cut '-d<' -f1 | \ sed -e 's/^ //' -e 's/ $//g' | \ grep ' ' | \ -sort -u | +sort -fu | awk '{ num++; n = sprintf("%s%s%s,", n, length(n)?" ":"", $0); |