Skip to content

Commit

Permalink
contributors: grep and sort case insensitively
Browse files Browse the repository at this point in the history
  • Loading branch information
bagder committed Aug 25, 2014
1 parent ee40b68 commit dfd821c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contributors.sh
Expand Up @@ -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);
Expand Down

0 comments on commit dfd821c

Please sign in to comment.