Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Merged
merged 1 commit into from May 11, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 2 additions & 3 deletions scripts/ci/deploy.sh
Expand Up @@ -50,9 +50,8 @@ case ${CI_MODE} in
(
cd ${TRAVIS_BUILD_DIR}/aio

if [[ $TRAVIS_PULL_REQUEST != "false" ]]; then
# This is a PR: It has already been deployed in `build.sh`.
else
# Only deploy if this not a PR. PRs are deployed early in `build.sh`.
if [[ $TRAVIS_PULL_REQUEST == "false" ]]; then
# This is upstream master: Deploy to staging
travisFoldStart "deploy.aio.staging"
yarn deploy-staging
Expand Down