diff options
author | Andreas Fischer <bantu@phpbb.com> | 2014-02-08 14:00:30 +0100 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2014-02-08 14:00:30 +0100 |
commit | eb2d8fe6d889d315ab024e6f1700e25e3399fcd7 (patch) | |
tree | 3b839b9e42fcfcaeabea7a317a5d64523dea09c2 | |
parent | 344baf91809bbfd5a224191e13472b94f77b421c (diff) | |
parent | 81c6ca7e4cb5de3528b94ab0fe826910cf23c225 (diff) | |
download | forums-eb2d8fe6d889d315ab024e6f1700e25e3399fcd7.tar forums-eb2d8fe6d889d315ab024e6f1700e25e3399fcd7.tar.gz forums-eb2d8fe6d889d315ab024e6f1700e25e3399fcd7.tar.bz2 forums-eb2d8fe6d889d315ab024e6f1700e25e3399fcd7.tar.xz forums-eb2d8fe6d889d315ab024e6f1700e25e3399fcd7.zip |
Merge pull request #2017 from nickvergessen/ticket/12141
[ticket/12141] Disable opcache on travis for php 5.5.8 aswell
* nickvergessen/ticket/12141:
[ticket/12141] Disable opcache on travis for php 5.5.8 aswell
-rwxr-xr-x | travis/setup-php-extensions.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/travis/setup-php-extensions.sh b/travis/setup-php-extensions.sh index ebfe62839c..86e3aaae47 100755 --- a/travis/setup-php-extensions.sh +++ b/travis/setup-php-extensions.sh @@ -37,8 +37,8 @@ function install_php_extension php_ini_file=$(find_php_ini) -# disable broken opcache on PHP 5.5.7 -if [ `php -r "echo (int) version_compare(PHP_VERSION, '5.5.8', '<');"` == "1" ] +# disable broken opcache on PHP 5.5.7 and 5.5.8 +if [ `php -r "echo (int) version_compare(PHP_VERSION, '5.5.9', '<');"` == "1" ] then sed -i '/opcache.so/d' "$php_ini_file" fi |