summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2022-03-29 19:42:01 +0200
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2022-03-29 19:42:01 +0200
commite0a5fc7267d3ed3b8792019761d761246bb0ec81 (patch)
treeec40a8da05686dd310c334a7c1e2eeaf54656110 /tools
parent942473dcc3e0752e238b7c7140c85e6eebe33d0b (diff)
downloadsystemd-e0a5fc7267d3ed3b8792019761d761246bb0ec81.tar.gz
tools/git-contrib: list contributions not only from Weblate
It seems that --invert-grep used to affect --author, but now it doesn't (with git-2.35.1-1.fc36.x86_64), so effectively we would only show the one entry that was supposed to be filtered out.
Diffstat (limited to 'tools')
-rwxr-xr-xtools/git-contrib.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/git-contrib.sh b/tools/git-contrib.sh
index f0756b4e45..cde1ecd227 100755
--- a/tools/git-contrib.sh
+++ b/tools/git-contrib.sh
@@ -3,7 +3,8 @@
set -eu
tag="$(git describe --abbrev=0 --match 'v[0-9][0-9][0-9]')"
-git log --pretty=tformat:%aN --author=noreply@weblate.org --invert-grep -s "${tag}.." | \
+git log --pretty=tformat:%aN -s "${tag}.." |
+ grep -v noreply@weblate.org |
sed 's/ / /g; s/--/-/g; s/.*/\0,/' |
- sort -u | tr '\n' ' ' | sed -e "s/^/Contributions from: /g" -e "s/,\s*$/\n/g" | fold -w 72 -s | \
+ sort -u | tr '\n' ' ' | sed -e "s/^/Contributions from: /g" -e "s/,\s*$/\n/g" | fold -w 72 -s |
sed -e "s/^/ /g" -e "s/\s*$//g"