diff options
author | Daniel Stenberg <daniel@haxx.se> | 2017-01-20 17:10:08 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2017-01-20 17:10:08 +0100 |
commit | 40e3d6c8c21ef2f8e64c1eddb22740c9f1a6cd99 (patch) | |
tree | 2b01446413ffd7927eca95941b977cb60efaf70d /scripts/contrithanks.sh | |
parent | a2bcaa31949df6f4e08bec6404467ccf39aeb6d9 (diff) | |
download | curl-40e3d6c8c21ef2f8e64c1eddb22740c9f1a6cd99.tar.gz |
contri*.sh: cut off parentheses from names too
Diffstat (limited to 'scripts/contrithanks.sh')
-rwxr-xr-x | scripts/contrithanks.sh | 3 |
1 files changed, 2 insertions, 1 deletions
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/' | \ |