chore(travis): actually skip build on deployment job when from Pull Request

This commit is contained in:
Martin Staffa
2017-07-31 23:31:39 +02:00
parent 0179c70d02
commit aee5d02cb7
+1 -1
View File
@@ -47,7 +47,7 @@ case "$JOB" in
;;
"deploy")
# we never deploy on Pull requests, so it's safe to skip the build here
if [[ $TRAVIS_PULL_REQUEST != 'false' ]]; then
if [[ "$TRAVIS_PULL_REQUEST" == "false" ]]; then
grunt package
grunt compress:firebaseCodeDeploy
else