contributors.sh: only check -by: lines for names

Avoid catching lines that otherwise just says "by:" something.
This commit is contained in:
Daniel Stenberg
2025-12-19 11:06:41 +01:00
parent d11b8593a2
commit 828d2e8762

View File

@@ -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 | \