[fix] make weblate.push.translations

Even when there are changes, the function exit without pushing them.
dependabot/pip/master/sphinx-6.1.3
Alexandre Flament 3 years ago committed by GitHub
parent 47eb836c65
commit f4dd5b226d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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
(

Loading…
Cancel
Save