summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Holywell <[email protected]>2018-01-02 15:27:36 +1000
committerGitHub <[email protected]>2018-01-02 15:27:36 +1000
commit1a8237a0a00fc7ccdc4edafe84d8ac0bdb79167c (patch)
treee43418caf6516edfbfbb52e1a9585024c83fc18b
parent10fd440f65f5a8082019c9d33514b548788f2219 (diff)
Update .travis.yml
-rw-r--r--.travis.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 10c4870..57b75d7 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -14,8 +14,8 @@ matrix:
- php: 5.3
dist: precise
install: |
- if [ $PHPV != 52 ]; then composer install; else curl -sSfL https://phar.phpunit.de/phpunit-4.phar -o ~/phpunit.phar; fi
+ if [ "$PHPV" -ne "52" ]; then composer install; else curl -sSfL https://phar.phpunit.de/phpunit-4.phar -o ~/phpunit.phar; fi
script: |
- if [ $PHPV != 52 ]; then X="composer run-script test --"; else X="~/phpunit.phar"; fi; $X --colors --coverage-text
+ if [ "$PHPV" -ne "52" ]; then X="composer run-script test --"; else X="~/phpunit.phar"; fi; $X --colors --coverage-text