mirror of
https://github.com/mlocati/docker-php-extension-installer
synced 2025-05-09 08:32:42 +00:00
Fix installing blackfire with thread-safe PHP (#1004)
This commit is contained in:
parent
091f76086f
commit
5c38dda75d
1 changed files with 1 additions and 1 deletions
|
@ -2984,7 +2984,7 @@ installRemoteModule() {
|
|||
installRemoteModule_distro=linux
|
||||
;;
|
||||
esac
|
||||
installRemoteModule_tmp2=$(php -r 'echo PHP_MAJOR_VERSION . PHP_MINOR_VERSION;')
|
||||
installRemoteModule_tmp2=$(php -r 'echo PHP_MAJOR_VERSION . PHP_MINOR_VERSION . (ZEND_THREAD_SAFE ? "-zts" : "");')
|
||||
installRemoteModule_tmp="$(mktemp -p /tmp/src -d)"
|
||||
cd "$installRemoteModule_tmp"
|
||||
curl -sSLf --user-agent Docker https://blackfire.io/api/v1/releases/probe/php/$installRemoteModule_distro/$installRemoteModule_tmp1/$installRemoteModule_tmp2 | tar xz
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue