From 3da6bb62d427684096bbb0032b1f23bb33fb697f Mon Sep 17 00:00:00 2001 From: Dave Machado Date: Thu, 25 May 2017 10:03:12 -0400 Subject: [PATCH] Update target branch condition off master for testing --- build/deploy.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build/deploy.sh b/build/deploy.sh index 09a9e6e..9d553a6 100644 --- a/build/deploy.sh +++ b/build/deploy.sh @@ -2,7 +2,7 @@ set -o errexit -o nounset -if [ "$TRAVIS_BRANCH" != "master" ] +if [ "$TRAVIS_BRANCH" != "feature/markdown-tables-to-json" ] then echo "This commit was made against $TRAVIS_BRANCH and not master! No deploy!" exit 0 @@ -14,8 +14,8 @@ mkdir deploy cd deploy git init -git config user.name "Travis CI" -git config user.email "build@travis.org" +git config --global user.name "Travis CI" +git config --global user.email "build@travis.org" git remote add upstream "https://$GH_TOKEN@github.com/davemachado/public-apis.git" git fetch upstream