diff --git a/travis/install-event.sh b/travis/install-event.sh index 8294d50b..67c704c0 100755 --- a/travis/install-event.sh +++ b/travis/install-event.sh @@ -1,10 +1,10 @@ #!/usr/bin/env bash -curl -LS https://pecl.php.net/get/event | tar -xz; -pushd event-*; -phpize; -./configure --with-event-core --with-event-extra --with-event-pthreads; -make; -make install; -popd; -echo "extension=event.so" >> "$(php -r 'echo php_ini_loaded_file();')"; \ No newline at end of file +curl -LS https://pecl.php.net/get/event | tar -xz \ + && pushd event-* \ + && phpize \ + && ./configure --with-event-core --with-event-extra --with-event-pthreads \ + && make \ + && make install \ + && popd \ + && echo "extension=event.so" >> "$(php -r 'echo php_ini_loaded_file();')";