mod_php_install.sh: fix error installing php 7.x on debian os version greater then 10.

This commit is contained in:
Christoph 2021-10-12 12:57:24 +02:00
parent cb2b31bec1
commit 25e7ebf704

View File

@ -1008,7 +1008,7 @@ _install_libxml2=false
if ([[ "$PHP_MAJOR_VERSION" -eq 7 ]] && [[ "$PHP_MINOR_VERSION" -lt 4 ]]) \
|| [[ "$PHP_MAJOR_VERSION" -lt 7 ]] ; then
if [[ "$os_dist" = "debian" ]] && [[ $os_version -eq 10 ]] ; then
if [[ "$os_dist" = "debian" ]] && [[ $os_version -gt 9 ]] ; then
echo ""
echo ""
echo -e "\033[32m--\033[m"