Skip to content

Commit aee5d02

Browse files
committed
chore(travis): actually skip build on deployment job when from Pull Request
1 parent 0179c70 commit aee5d02

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/travis/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ case "$JOB" in
4747
;;
4848
"deploy")
4949
# we never deploy on Pull requests, so it's safe to skip the build here
50-
if [[ $TRAVIS_PULL_REQUEST != 'false' ]]; then
50+
if [[ "$TRAVIS_PULL_REQUEST" == "false" ]]; then
5151
grunt package
5252
grunt compress:firebaseCodeDeploy
5353
else

0 commit comments

Comments
 (0)