From b4137c1a9b9226eb545b3477d770ef3328988c46 Mon Sep 17 00:00:00 2001 From: Bryan Housel Date: Thu, 24 Oct 2019 15:57:34 -0400 Subject: [PATCH] Push strings to Transfiex only if we are building the 2.x branch --- scripts/txpush.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/txpush.sh b/scripts/txpush.sh index 1fdfaed6d..dc6506a9c 100755 --- a/scripts/txpush.sh +++ b/scripts/txpush.sh @@ -9,7 +9,7 @@ echo "TRAVIS_NODE_VERSION=$TRAVIS_NODE_VERSION" if [[ "$TRAVIS" != "true" ]]; then exit 0; fi if [[ "$TRAVIS_PULL_REQUEST" != "false" ]]; then exit 0; fi -if [[ "$TRAVIS_BRANCH" != "master" ]]; then exit 0; fi +if [[ "$TRAVIS_BRANCH" != "2.x" ]]; then exit 0; fi if [[ "$TRAVIS_NODE_VERSION" != "10" ]]; then exit 0; fi echo "Pushing source strings to Transifex..."