diff options
author | Alexandre Flament <alex@al-f.net> | 2021-10-03 21:11:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-03 21:11:32 +0200 |
commit | f4dd5b226d9980995239c87d89f43221e302e041 (patch) | |
tree | 57ce139f0e9d013d2adff67dfea5d84fa7d36a75 /manage | |
parent | 47eb836c657f581fab12d68c978d9520e2e14417 (diff) | |
download | searxng-f4dd5b226d9980995239c87d89f43221e302e041.tar.gz searxng-f4dd5b226d9980995239c87d89f43221e302e041.zip |
[fix] make weblate.push.translations
Even when there are changes, the function exit without pushing them.
Diffstat (limited to 'manage')
-rwxr-xr-x | manage | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -266,7 +266,7 @@ weblate.push.translations() { if [ "$exitcode" -eq 42 ]; then return 0 fi - if [ "$exitcode" ]; then + if [ "$exitcode" -gt 0 ]; then return $exitcode fi ( |