summaryrefslogtreecommitdiff
path: root/manage
diff options
context:
space:
mode:
authorAlexandre Flament <alex@al-f.net>2021-10-03 21:11:32 +0200
committerGitHub <noreply@github.com>2021-10-03 21:11:32 +0200
commitf4dd5b226d9980995239c87d89f43221e302e041 (patch)
tree57ce139f0e9d013d2adff67dfea5d84fa7d36a75 /manage
parent47eb836c657f581fab12d68c978d9520e2e14417 (diff)
downloadsearxng-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-xmanage2
1 files changed, 1 insertions, 1 deletions
diff --git a/manage b/manage
index 16539a02c..2b00c904a 100755
--- a/manage
+++ b/manage
@@ -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
(