diff --git a/contributors.sh b/contributors.sh index 41f9cb15887641bc9b27da58564e50c49348f8fd..153fec9e16ed822ba8143dbbbc267b8fa11a5c85 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);