diff options
author | Markus Heiser <markus.heiser@darmarit.de> | 2021-10-04 11:09:30 +0200 |
---|---|---|
committer | Markus Heiser <markus.heiser@darmarit.de> | 2021-10-04 11:09:30 +0200 |
commit | afc5c9870efc254855a2f35e0538423d3ff3df0b (patch) | |
tree | 180a04c8a89dacbc47e8f8a6822c7c1e0f512096 /manage | |
parent | cebc0e395b293ddf9f6a4485bb4bfa3a4ee9df4f (diff) | |
download | searxng-afc5c9870efc254855a2f35e0538423d3ff3df0b.tar.gz searxng-afc5c9870efc254855a2f35e0538423d3ff3df0b.zip |
[fix] commit message of 'make weblate.push.translations'
Fix `\n` issue in the commit message [1] by using multiple `-m` options [2]::
7d9ffd680 translations [translations] update messages.pot and messages.po files\nFrom cebc0e39 - 2021-10-04 - Markus Heiser <markus.heiser@darmarIT.de>
[1] https://github.com/searxng/searxng/pull/379#issuecomment-933242702
[2] https://git-scm.com/docs/git-commit#Documentation/git-commit.txt--mltmsggt
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to 'manage')
-rwxr-xr-x | manage | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -240,7 +240,7 @@ weblate.push.translations() { # 5. Notify Weblate to pull updated 'master' & 'translations' branch. local messages_pot diff_messages_pot last_commit_hash last_commit_detail \ - last_commit_message exitcode + exitcode messages_pot="${TRANSLATIONS_WORKTREE}/searx/translations/messages.pot" ( set -e pyenv.activate @@ -301,11 +301,12 @@ weblate.push.translations() { # git add/commit/push last_commit_hash=$(git log -n1 --pretty=format:'%h') last_commit_detail=$(git log -n1 --pretty=format:'%h - %as - %aN <%ae>' "${last_commit_hash}") - last_commit_message="[translations] update messages.pot and messages.po files\nFrom ${last_commit_detail}" pushd "${TRANSLATIONS_WORKTREE}" git add searx/translations - git commit -m "${last_commit_message}" + git commit \ + -m "[translations] update messages.pot and messages.po files" \ + -m "From ${last_commit_detail}" git push popd |