From: Daniel Stenberg Date: Fri, 20 Jan 2017 16:10:08 +0000 (+0100) Subject: contri*.sh: cut off parentheses from names too X-Git-Tag: curl-7_53_0~68 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=40e3d6c8c21ef2f8e64c1eddb22740c9f1a6cd99;p=thirdparty%2Fcurl.git contri*.sh: cut off parentheses from names too --- diff --git a/scripts/contributors.sh b/scripts/contributors.sh index d62baade68..fcaaff8783 100755 --- a/scripts/contributors.sh +++ b/scripts/contributors.sh @@ -6,7 +6,7 @@ # | (__| |_| | _ <| |___ # \___|\___/|_| \_\_____| # -# Copyright (C) 2013-2016, Daniel Stenberg, , et al. +# Copyright (C) 2013-2017, Daniel Stenberg, , 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 6ca7e832ed..4d6d47a80e 100755 --- a/scripts/contrithanks.sh +++ b/scripts/contrithanks.sh @@ -6,7 +6,7 @@ # | (__| |_| | _ <| |___ # \___|\___/|_| \_\_____| # -# Copyright (C) 2013-2016, Daniel Stenberg, , et al. +# Copyright (C) 2013-2017, Daniel Stenberg, , 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/' | \