diff options
author | Markus Heiser <markus.heiser@darmarit.de> | 2021-12-17 10:48:12 +0100 |
---|---|---|
committer | Markus Heiser <markus.heiser@darmarit.de> | 2021-12-17 10:48:12 +0100 |
commit | 8069bc83e683860c7c23c14fe8934e1a8b549b9e (patch) | |
tree | 42061c6b5c6cc3cccb8542f996b4f4a819ac593a /manage | |
parent | c351993fdc5997a281f7f4253744af49110fdbf8 (diff) | |
download | searxng-8069bc83e683860c7c23c14fe8934e1a8b549b9e.tar.gz searxng-8069bc83e683860c7c23c14fe8934e1a8b549b9e.zip |
[fix] weblate: separate commit description from commit body
It is a common convention to separate commit description from commit body by a
empty line [1].
[1] https://www.conventionalcommits.org/en/v1.0.0/#summary
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to 'manage')
-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}" ) |