diff options
author | Daniel Stenberg <daniel@haxx.se> | 2016-05-23 09:14:19 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2016-05-23 09:14:19 +0200 |
commit | 9816c67b9bcfcd696931293c656ccb0b3604b566 (patch) | |
tree | 2f36c4dbde7faca12fd3c2d881b54e82b5d8b14f /scripts | |
parent | f704d6bf0007e158405dd27fcffb21bb8095a36a (diff) | |
download | curl-9816c67b9bcfcd696931293c656ccb0b3604b566.tar.gz |
contrithanks.sh: use same grep pattern and -a flag as contributors.sh
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/contrithanks.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/contrithanks.sh b/scripts/contrithanks.sh index 71239a14f..63073042b 100755 --- a/scripts/contrithanks.sh +++ b/scripts/contrithanks.sh @@ -36,7 +36,7 @@ cat ./docs/THANKS ( git log $start..HEAD | \ -egrep -i '(Author|Commit|by):' | \ +egrep -ai '(^Author|^Commit|by):' | \ cut -d: -f2- | \ cut '-d<' -f1 | \ tr , '\012' | \ @@ -46,12 +46,12 @@ sed -e 's/^ //' -e 's/ $//g' -e 's/@users.noreply.github.com$/ on github/' # grep out the list of names from RELEASE-NOTES # split on ", " # remove leading white spaces -grep "^ [^ (]" RELEASE-NOTES| \ +grep -a "^ [^ (]" RELEASE-NOTES| \ sed 's/, */\n/g'| \ sed 's/^ *//' )| \ sed -f ./docs/THANKS-filter | \ -grep ' ' | \ +grep -a ' ' | \ sort -fu | \ -grep -xvf ./docs/THANKS +grep -axvf ./docs/THANKS |