1
0
Fork 0
mirror of https://github.com/mlocati/docker-php-extension-installer synced 2025-05-09 08:32:42 +00:00

Fix installing excimer on Alpine (#714)

This commit is contained in:
Michele Locati 2023-03-06 12:06:30 +01:00 committed by GitHub
parent 46e8032081
commit f175ea1470
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2676,6 +2676,13 @@ installRemoteModule() {
# event must be loaded after sockets
installRemoteModule_ini_basename="xx-php-ext-$installRemoteModule_module"
;;
excimer)
if test -z "$installRemoteModule_version"; then
if test "$DISTRO" = alpine && test $PHP_MAJMIN_VERSION -le 703; then
installRemoteModule_version=1.0.4
fi
fi
;;
gearman)
if test -z "$installRemoteModule_version"; then
if test $PHP_MAJMIN_VERSION -le 506; then