Updated to only inject on non-HHVM
Saw someone else's .travis.yml that opted to not put those extension lines into the INI when running on HHVM. Worth a shot!
This commit is contained in:
parent
ab6623d6fb
commit
823fe0759a
1 changed files with 4 additions and 3 deletions
|
@ -9,8 +9,9 @@ then
|
||||||
PHPINI=/etc/hhvm/php.ini
|
PHPINI=/etc/hhvm/php.ini
|
||||||
else
|
else
|
||||||
PHPINI=~/.phpenv/versions/$VERSION/etc/php.ini
|
PHPINI=~/.phpenv/versions/$VERSION/etc/php.ini
|
||||||
|
|
||||||
|
echo "extension = memcache.so" >> $PHPINI
|
||||||
|
echo "extension = memcached.so" >> $PHPINI
|
||||||
|
echo "extension = redis.so" >> $PHPINI
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "extension = memcache.so" >> $PHPINI
|
|
||||||
echo "extension = memcached.so" >> $PHPINI
|
|
||||||
echo "extension = redis.so" >> $PHPINI
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue