[ticket/12141] Disable opcache on travis for php 5.5.8 aswell

PHPBB3-12141
This commit is contained in:
Joas Schilling 2014-02-08 12:52:22 +01:00
parent 344baf9180
commit 81c6ca7e4c

View file

@ -37,8 +37,8 @@ function install_php_extension
php_ini_file=$(find_php_ini) php_ini_file=$(find_php_ini)
# disable broken opcache on PHP 5.5.7 # disable broken opcache on PHP 5.5.7 and 5.5.8
if [ `php -r "echo (int) version_compare(PHP_VERSION, '5.5.8', '<');"` == "1" ] if [ `php -r "echo (int) version_compare(PHP_VERSION, '5.5.9', '<');"` == "1" ]
then then
sed -i '/opcache.so/d' "$php_ini_file" sed -i '/opcache.so/d' "$php_ini_file"
fi fi