Skip to content

Commit 86591cf

Browse files
author
Eugene Leonovich
committed
Tweak .travis.yml
1 parent 2ee57dc commit 86591cf

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.travis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,16 +41,16 @@ before_script:
4141
4242
script:
4343
- >
44-
bash -c 'if [[ 5.6 == $TRAVIS_PHP_VERSION ]]; then
44+
if [[ $TRAVIS_PHP_VERSION == 5.6 ]]; then
4545
phpunit --coverage-clover coverage.clover;
4646
else
4747
phpunit;
48-
fi;'
48+
fi
4949
5050
after_script:
5151
# code-coverage for scrutinizer-ci
5252
- >
53-
bash -c 'if [[ -f coverage.clover ]]; then
53+
if [[ -f coverage.clover ]]; then
5454
wget https://scrutinizer-ci.com/ocular.phar;
5555
php ocular.phar code-coverage:upload --format=php-clover coverage.clover;
56-
fi;'
56+
fi

0 commit comments

Comments
 (0)