increment_version.sh: weblate now auto-pushes, no need to manage here

Change-Id: I1d671cc682e02c9e8bc29634471ac18c2e41c112
This commit is contained in:
SpiritCroc 2023-04-01 11:23:33 +02:00
parent c3077c1ff9
commit dab8f0b51c
1 changed files with 12 additions and 8 deletions

View File

@ -9,6 +9,8 @@ source "$mydir/merge_helpers.sh"
# https://f-droid.org/en/docs/All_About_Descriptions_Graphics_and_Screenshots/ # https://f-droid.org/en/docs/All_About_Descriptions_Graphics_and_Screenshots/
max_changelog_len=500 max_changelog_len=500
should_merge_translations_for_release=0
if [ "$1" = "preview" ]; then if [ "$1" = "preview" ]; then
preview=1 preview=1
shift shift
@ -30,14 +32,16 @@ pushd "$mydir" > /dev/null
do_translation_pull=0 do_translation_pull=0
if [ "$release_type" = "normal" ] && [ "$preview" != 1 ]; then if ((should_merge_translations_for_release)); then
if git remote get-url weblate > /dev/null; then if [ "$release_type" = "normal" ] && [ "$preview" != 1 ]; then
echo "Pulling translations..." if git remote get-url weblate > /dev/null; then
translation commit && do_translation_pull=1 || echo "translation tool not found, skipping forced commit" echo "Pulling translations..."
git fetch weblate translation commit && do_translation_pull=1 || echo "translation tool not found, skipping forced commit"
git merge weblate/sc --no-edit git fetch weblate
else git merge weblate/sc --no-edit
echo "WARN: remote weblate not found, not updating translations" else
echo "WARN: remote weblate not found, not updating translations"
fi
fi fi
fi fi