From 8069bc83e683860c7c23c14fe8934e1a8b549b9e Mon Sep 17 00:00:00 2001 From: Markus Heiser Date: Fri, 17 Dec 2021 10:48:12 +0100 Subject: [PATCH] [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 --- manage | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manage b/manage index 736a479b5..3a443390a 100755 --- a/manage +++ b/manage @@ -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}" )