From: Daniel Stenberg Date: Fri, 19 Dec 2025 10:06:41 +0000 (+0100) Subject: contributors.sh: only check -by: lines for names X-Git-Url: https://git.feebdaed.xyz/?a=commitdiff_plain;h=828d2e87624a5fc6711eabf203e13fd735b3194c;p=0xmirror%2Fcurl.git contributors.sh: only check -by: lines for names Avoid catching lines that otherwise just says "by:" something. --- diff --git a/scripts/contributors.sh b/scripts/contributors.sh index ddc9bdfba0..f8f08b3065 100755 --- a/scripts/contributors.sh +++ b/scripts/contributors.sh @@ -62,7 +62,7 @@ CURLWWW="${CURLWWW:-../curl-www}" git -C "$CURLWWW" log --pretty=full --use-mailmap "$start..HEAD" fi } | \ - grep -Eai '(^Author|^Commit|by):' | \ + grep -Eai '(^Author|^Commit|-by):' | \ cut -d: -f2- | \ cut '-d(' -f1 | \ cut '-d<' -f1 | \