Skip to content

Commit

Permalink
ci: Fix TravisCI ENV vars check
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilogorek committed Oct 17, 2017
1 parent 442a4b3 commit 1650da7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ addons:
firefox: latest
sauce_connect: true
script:
- npm run test && if [ -z "$TRAVIS_SECURE_ENV_VARS" ]; then exit 0; else npm run test:ci; fi
- npm run test && if [ "$TRAVIS_SECURE_ENV_VARS" == "true" ]; then npm run test:ci; else exit 0; fi

0 comments on commit 1650da7

Please sign in to comment.