summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 4b680d2802..f0756b4e45 100755
--- a/tools/git-contrib.sh
+++ b/tools/git-contrib.sh
@@ -4,5 +4,6 @@ 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}.." | \
- sed 's/ / /g; s/--/-/g; s/.*/ \0,/' |
- sort -u
+ 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 | \
+ sed -e "s/^/ /g" -e "s/\s*$//g"