Skip to content
Snippets Groups Projects
Commit dfd821c7 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

contributors: grep and sort case insensitively

parent ee40b688
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment