1
0
mirror of https://github.com/danog/file.git synced 2024-12-02 17:28:24 +01:00
file/travis/install-pcov.sh

13 lines
217 B
Bash
Raw Normal View History

2020-02-21 20:06:01 +01:00
#!/usr/bin/env bash
set -e
curl -LS https://pecl.php.net/get/pcov | tar -xz
pushd pcov-*
phpize
./configure --enable-pcov
make
make install
popd
echo "extension=pcov.so" >> "$(php -r 'echo php_ini_loaded_file();')"