From f4dd5b226d9980995239c87d89f43221e302e041 Mon Sep 17 00:00:00 2001 From: Alexandre Flament Date: Sun, 3 Oct 2021 21:11:32 +0200 Subject: [PATCH] [fix] make weblate.push.translations Even when there are changes, the function exit without pushing them. --- manage | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manage b/manage index 16539a02..2b00c904 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 (