fix(docs-infra): fix typo in the deploy-to-firebase.sh script (#37754)

This typo caused the script to fail on Linux (interestingly it works fine on Mac).

This is a painful reminder that we should not write any more Bash scripts EVER. shelljs FTW! :-)

PR Close #37754
This commit is contained in:
Igor Minar 2020-06-25 15:00:07 -07:00 committed by Andrew Kushnir
parent 9118f49a63
commit 0e3e9cd382
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ fi
yarn firebase use aio-staging --token "$firebaseToken"
yarn firebase target:apply hosting aio $projectId --token "$firebaseToken"
yarn firebase deploy --only hosting:aio --message "Commit: $CI_COMMIT" --non-interactive --token "$firebaseToken"
elif
else
yarn firebase use "$projectId" --token "$firebaseToken"
yarn firebase deploy --message "Commit: $CI_COMMIT" --non-interactive --token "$firebaseToken"
fi