summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2017-01-20 17:10:08 +0100
committerng0 <ng0@infotropique.org>2017-08-22 15:13:46 +0000
commitb5ecb99ffcb981216c593767919135618dc9b36f (patch)
treee9199fcace3bf4030a54c6450b007076cf8e0626 /scripts
parent2282fa2a057ba90038e25fd215839132e7d58373 (diff)
downloadgnurl-b5ecb99ffcb981216c593767919135618dc9b36f.tar.gz
gnurl-b5ecb99ffcb981216c593767919135618dc9b36f.tar.bz2
gnurl-b5ecb99ffcb981216c593767919135618dc9b36f.zip
contri*.sh: cut off parentheses from names too
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/contributors.sh3
-rwxr-xr-xscripts/contrithanks.sh3
2 files changed, 4 insertions, 2 deletions
diff --git a/scripts/contributors.sh b/scripts/contributors.sh
index d62baade6..fcaaff878 100755
--- a/scripts/contributors.sh
+++ b/scripts/contributors.sh
@@ -6,7 +6,7 @@
# | (__| |_| | _ <| |___
# \___|\___/|_| \_\_____|
#
-# Copyright (C) 2013-2016, Daniel Stenberg, <daniel@haxx.se>, et al.
+# Copyright (C) 2013-2017, Daniel Stenberg, <daniel@haxx.se>, et al.
#
# This software is licensed as described in the file COPYING, which
# you should have received as part of this distribution. The terms
@@ -47,6 +47,7 @@ fi
git log $start..HEAD | \
egrep -ai '(^Author|^Commit|by):' | \
cut -d: -f2- | \
+cut '-d(' -f1 | \
cut '-d<' -f1 | \
tr , '\012' | \
sed 's/ and /\n/' | \
diff --git a/scripts/contrithanks.sh b/scripts/contrithanks.sh
index 6ca7e832e..4d6d47a80 100755
--- a/scripts/contrithanks.sh
+++ b/scripts/contrithanks.sh
@@ -6,7 +6,7 @@
# | (__| |_| | _ <| |___
# \___|\___/|_| \_\_____|
#
-# Copyright (C) 2013-2016, Daniel Stenberg, <daniel@haxx.se>, et al.
+# Copyright (C) 2013-2017, Daniel Stenberg, <daniel@haxx.se>, et al.
#
# This software is licensed as described in the file COPYING, which
# you should have received as part of this distribution. The terms
@@ -38,6 +38,7 @@ cat ./docs/THANKS
git log $start..HEAD | \
egrep -ai '(^Author|^Commit|by):' | \
cut -d: -f2- | \
+cut '-d(' -f1 | \
cut '-d<' -f1 | \
tr , '\012' | \
sed 's/ and /\n/' | \