1
0
Fork 0
mirror of https://github.com/mlocati/docker-php-extension-installer synced 2025-05-08 16:17:20 +00:00

Fix installing zstd on PHP 5.x (#664)

This commit is contained in:
Michele Locati 2022-11-24 14:02:19 +01:00 committed by GitHub
parent 1ce733079d
commit ef69c94206
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3559,6 +3559,13 @@ installRemoteModule() {
;;
esac
;;
zstd)
if test -z "$installRemoteModule_version"; then
if test $PHP_MAJMIN_VERSION -le 506; then
installRemoteModule_version=0.11.0
fi
fi
;;
esac
if test $installRemoteModule_manuallyInstalled -eq 0; then
if test -n "$installRemoteModule_path"; then