increment_version.sh: weblate now auto-pushes, no need to manage here
Change-Id: I1d671cc682e02c9e8bc29634471ac18c2e41c112
This commit is contained in:
parent
c3077c1ff9
commit
dab8f0b51c
|
@ -9,6 +9,8 @@ source "$mydir/merge_helpers.sh"
|
|||
# https://f-droid.org/en/docs/All_About_Descriptions_Graphics_and_Screenshots/
|
||||
max_changelog_len=500
|
||||
|
||||
should_merge_translations_for_release=0
|
||||
|
||||
if [ "$1" = "preview" ]; then
|
||||
preview=1
|
||||
shift
|
||||
|
@ -30,6 +32,7 @@ pushd "$mydir" > /dev/null
|
|||
|
||||
do_translation_pull=0
|
||||
|
||||
if ((should_merge_translations_for_release)); then
|
||||
if [ "$release_type" = "normal" ] && [ "$preview" != 1 ]; then
|
||||
if git remote get-url weblate > /dev/null; then
|
||||
echo "Pulling translations..."
|
||||
|
@ -40,6 +43,7 @@ if [ "$release_type" = "normal" ] && [ "$preview" != 1 ]; then
|
|||
echo "WARN: remote weblate not found, not updating translations"
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
|
||||
last_tag=`downstream_latest_tag`
|
||||
|
||||
|
|
Loading…
Reference in New Issue