diff options
| author | Alexandre Flament <alex@al-f.net> | 2021-12-17 11:59:38 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-17 11:59:38 +0100 |
| commit | 5c710e128590a72b6896e6ce4663b1879f46c4d1 (patch) | |
| tree | 42061c6b5c6cc3cccb8542f996b4f4a819ac593a | |
| parent | c351993fdc5997a281f7f4253744af49110fdbf8 (diff) | |
| parent | 8069bc83e683860c7c23c14fe8934e1a8b549b9e (diff) | |
Merge pull request #608 from return42/fix-translation-commit
[fix] weblate: separate commit description from commit body
| -rwxr-xr-x | manage | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -229,7 +229,7 @@ weblate.translations.commit() { -d "searx/translations" # git add/commit (no push) commit_body=$(cd "${TRANSLATIONS_WORKTREE}"; git log --pretty=format:'%h - %as - %aN <%ae>' "${existing_commit_hash}..HEAD") - commit_message=$(echo -e "[translations] update\n${commit_body}") + commit_message=$(echo -e "[translations] update from Weblate\n\n${commit_body}") git add searx/translations git commit -m "${commit_message}" ) |