File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -15,9 +15,9 @@ matrix:
1515 - php : nightly
1616
1717script :
18- - bash -c ' if [ " $TRAVIS_PHP_VERSION" != "hhvm" ]; then php scripts/phpcs --config-set php_path php; fi;'
18+ - if [ $TRAVIS_PHP_VERSION != "hhvm" ]; then php scripts/phpcs --config-set php_path php; fi
1919 - phpunit -d date.timezone=Australia/Sydney tests/AllTests.php
2020 - php scripts/phpcs CodeSniffer.php CodeSniffer --standard=PHPCS --report=summary -np
21- - bash -c ' if [ " $TRAVIS_PHP_VERSION" != "hhvm" ] && [ " $TRAVIS_PHP_VERSION" != "nightly" ]; then pear package-validate package.xml; fi;'
22- - bash -c ' if [ " $TRAVIS_PHP_VERSION" != "hhvm" ]; then php scripts/build-phar.php; fi;'
23- - bash -c ' if [ " $TRAVIS_PHP_VERSION" != "hhvm" ]; then php phpcs.phar CodeSniffer.php CodeSniffer --standard=PHPCS --report=summary -np; fi;'
21+ - if [[ $TRAVIS_PHP_VERSION != "hhvm" && $TRAVIS_PHP_VERSION != "nightly" ]] ; then pear package-validate package.xml; fi
22+ - if [ $TRAVIS_PHP_VERSION != "hhvm" ]; then php scripts/build-phar.php; fi
23+ - if [ $TRAVIS_PHP_VERSION != "hhvm" ]; then php phpcs.phar CodeSniffer.php CodeSniffer --standard=PHPCS --report=summary -np; fi
You can’t perform that action at this time.
0 commit comments