From ae2680e6d74c24ca5402cffba8fbb77287721b9f Mon Sep 17 00:00:00 2001 From: Tommy Date: Mon, 1 Nov 2021 22:26:30 -0400 Subject: [PATCH] Update install.sh --- install.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/install.sh b/install.sh index dbc1c5e..b81d55f 100644 --- a/install.sh +++ b/install.sh @@ -126,12 +126,12 @@ os_check(){ exit 2 fi elif [ "$lsb_dist" = "debian" ]; then - if [ "$dist_version" != "10" ]; then + if [ "$dist_version" != "11" ]; then output "Unsupported Debian version. Only Debian 10 is supported." exit 2 fi elif [ "$lsb_dist" = "fedora" ]; then - if [ "$dist_version" != "34" ]; then + if [ "$dist_version" != "35" ]; then output "Unsupported Fedora version. Only Fedora 34 is supported." exit 2 fi @@ -155,8 +155,8 @@ os_check(){ output "" output "Supported OS:" output "Ubuntu: 20.04" - output "Debian: 10" - output "Fedora: 34" + output "Debian: 11" + output "Fedora: 35" output "CentOS Stream: 8" output "Rocky Linux: 8" output "RHEL: 8"