fix release check for centos stream

fixes #3947 #3953

Signed-off-by: bcambl <blayne@blaynecampbell.com>
pull/3958/head
bcambl 3 years ago
parent 7507d533ac
commit a5422dbdf6

@ -408,7 +408,7 @@ elif is_command rpm ; then
SUPPORTED_CENTOS_VERSION=7
SUPPORTED_CENTOS_PHP_VERSION=7
# Check current CentOS major release version
CURRENT_CENTOS_VERSION=$(grep -oP '(?<= )[0-9]+(?=\.)' /etc/redhat-release)
CURRENT_CENTOS_VERSION=$(grep -oP '(?<= )[0-9]+(?=\.?)' /etc/redhat-release)
# Check if CentOS version is supported
if [[ $CURRENT_CENTOS_VERSION -lt $SUPPORTED_CENTOS_VERSION ]]; then
printf " %b CentOS %s is not supported.\\n" "${CROSS}" "${CURRENT_CENTOS_VERSION}"

Loading…
Cancel
Save