1
0
mirror of https://github.com/danog/parallel.git synced 2024-12-02 09:37:57 +01:00
parallel/travis/install-parallel.sh

11 lines
205 B
Bash
Raw Permalink Normal View History

2019-02-13 21:19:01 +01:00
#!/usr/bin/env bash
git clone https://github.com/krakjoe/parallel;
pushd parallel;
phpize;
./configure;
make;
make install;
popd;
echo "extension=parallel.so" >> "$(php -r 'echo php_ini_loaded_file();')"