ci: fix syntax error in `deploy.sh` (#16739)

This commit is contained in:
George Kalpakas 2017-05-12 01:52:39 +03:00 committed by Igor Minar
parent fdfeaaf1f3
commit 4a599eec45
1 changed files with 2 additions and 3 deletions

View File

@ -50,9 +50,8 @@ case ${CI_MODE} in
( (
cd ${TRAVIS_BUILD_DIR}/aio cd ${TRAVIS_BUILD_DIR}/aio
if [[ $TRAVIS_PULL_REQUEST != "false" ]]; then # Only deploy if this not a PR. PRs are deployed early in `build.sh`.
# This is a PR: It has already been deployed in `build.sh`. if [[ $TRAVIS_PULL_REQUEST == "false" ]]; then
else
# This is upstream master: Deploy to staging # This is upstream master: Deploy to staging
travisFoldStart "deploy.aio.staging" travisFoldStart "deploy.aio.staging"
yarn deploy-staging yarn deploy-staging