From 288478978f4c31eea8fc5a34c926434e13df2ec0 Mon Sep 17 00:00:00 2001 From: Adam Mills Date: Wed, 18 Apr 2018 14:11:31 -0400 Subject: [PATCH] Always run translation upload on master (#1106) This ensures that if the master build gets cancelled when translations change, or if any other weird situation happens, we know the translations will be uploaded after the next build. --- script/travis_deploy | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/script/travis_deploy b/script/travis_deploy index 2f3715aaf525..4875362c2f42 100755 --- a/script/travis_deploy +++ b/script/travis_deploy @@ -8,8 +8,4 @@ set -eu -o pipefail cd "$(dirname "$0")/.." -if git diff "${TRAVIS_COMMIT_RANGE}" --name-only | grep -Fxq "src/translations/en.json" ; then - script/translations_upload_base -else - echo "No changes to src/translations/en.json. Skipping translation upload." -fi +script/translations_upload_base