From 086e7744cf13ec331d986ff20402b4b13f19aab7 Mon Sep 17 00:00:00 2001 From: Petr Vorel Date: Tue, 9 Sep 2025 09:10:12 +0200 Subject: [PATCH] tools/tag-release.sh: Fix count for translators Translators update only po/*.po files, not the other files in po/ directory. While at it, .github directory does not need to be listed. Signed-off-by: Petr Vorel --- tools/tag-release.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/tag-release.sh b/tools/tag-release.sh index c152f05..ff2f207 100755 --- a/tools/tag-release.sh +++ b/tools/tag-release.sh @@ -53,18 +53,18 @@ TODO: Add changelog ## credit Many thanks to the developers contributing to this release: \`\`\` - $ git shortlog -sen $old_tag.. -- \$(git ls-files | grep -v ^po/) + $ git shortlog -sen $old_tag.. -- \$(git ls-files | grep -v '^po/.*\.po') EOF -git shortlog -sen "$old_tag".. -- $(git ls-files | grep -v ^po/) .github/ >> "$credit" +git shortlog -sen "$old_tag".. -- $(git ls-files | grep -v '^po/.*\.po') >> "$credit" cat >> "$credit" <> "$credit" +git shortlog -sen "$old_tag".. -- po/*.po >> "$credit" cat >> "$credit" <