]> granicus.if.org Git - curl/commitdiff
contributors.sh: make --releasenotes implied
authorDaniel Stenberg <daniel@haxx.se>
Fri, 22 Apr 2016 13:53:42 +0000 (15:53 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Fri, 22 Apr 2016 13:53:42 +0000 (15:53 +0200)
It got too annoying to type =)

scripts/contributors.sh

index a4eec0d2e8589814410a9649b4c596281e8ef75b..88386109ffb290fe01911a27ef40bcc7709e303b 100755 (executable)
 ###########################################################################
 
 #
-# This script shows all mentioned contributors from <hash> until HEAD. To aid
-# when writing RELEASE-NOTES and THANKS.
-#
-# Use --releasenotes to also include the names from the existing RELEASE-NOTES
-# file, which is handy when we've added names manually in there that should be
-# included in an updated list.
+# This script shows all mentioned contributors from the given <hash>/<tag>
+# until HEAD and adds the contributors already mentioned in the existing
+# RELEASE-NOTES.
 #
 
 start=$1
@@ -55,15 +52,10 @@ tr , '\012' | \
 sed 's/ and /\n/' | \
 sed -e 's/^ //' -e 's/ $//g'
 
-if echo "$*" | grep -qw -- '--releasenotes';then
-    # if --releasenotes was used
-    # grep out the list of names from RELEASE-NOTES
-    # split on ", "
-    # remove leading white spaces
 grep "^  [^ \(]" RELEASE-NOTES| \
 sed 's/, */\n/g'| \
 sed 's/^ *//'
-fi
+
 )| \
 sed -f ./docs/THANKS-filter | \
 grep ' ' | \