From 828d2e87624a5fc6711eabf203e13fd735b3194c Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Fri, 19 Dec 2025 11:06:41 +0100 Subject: [PATCH] contributors.sh: only check -by: lines for names Avoid catching lines that otherwise just says "by:" something. --- scripts/contributors.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 | \