From 852c7d8a4479e1152e4441ac96b23fcf051e26e2 Mon Sep 17 00:00:00 2001 From: Binrui Dong Date: Tue, 23 Feb 2021 09:39:38 -0500 Subject: [PATCH] Resume pulling latest translations on Android target --- mainline-build.zsh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/mainline-build.zsh b/mainline-build.zsh index 215ffcf..c845678 100755 --- a/mainline-build.zsh +++ b/mainline-build.zsh @@ -11,6 +11,11 @@ BUILD_VER=$( git describe --tags --always --dirty --match "[0-9A-Z]*.[0-9A-Z]*" MAJOR_VER=$( echo $BUILD_VER | cut -d '-' -f1 ) echo "This build is version ${BUILD_VER}, and the time is $(date)" +echo "Pulling translations from Transifex" +set +e +tx pull --all --force --minimum-perc 80 --resource cataclysm-dda.master-cataclysm-dda +set -e + if [[ -z "${COMPILE_THREAD_COUNT}" ]]; then export COMPILE_THREAD_COUNT="1" fi @@ -115,11 +120,6 @@ else exit 0 fi - echo "Pulling translations from Transifex" - set +e - tx pull --all --force --minimum-perc 80 --resource cataclysm-dda.master-cataclysm-dda - set -e - ## ...package... make ${DIST} fi