Skip to content

Commit

Permalink
bug fix to env vars
Browse files Browse the repository at this point in the history
  • Loading branch information
danrwalker committed Mar 15, 2016
1 parent dcd5bd9 commit 5956f39
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Expand Up @@ -5,7 +5,7 @@ php:
- 5.4
- 5.5
- 5.6
env COVERALLS=TRUE
env COVERALLS=ON
- 7.0
#- hhvm
#- nightly
Expand All @@ -27,7 +27,7 @@ before_install:
- mysql -e "SHOW DATABASES"

install:
- if [ "COVERALLS" = true ]; then composer require satooshi/php-coveralls '~1.0'; fi;
- if [ "$COVERALLS" = 'ON' ]; then composer require satooshi/php-coveralls '~1.0'; fi;
- php ./tests/install.php

before_script:
Expand All @@ -43,4 +43,4 @@ notifications:
on_failure: always

after_success:
- if [ "COVERALLS" = true ]; then ./vendor/bin/coveralls -v --exclude-no-stmt; fi;
- if [ "$COVERALLS" = 'ON' ]; then ./vendor/bin/coveralls -v --exclude-no-stmt; fi;

0 comments on commit 5956f39

Please sign in to comment.