From 5364b29fb2843b20f0599d30d3f559fa1e68d9f9 Mon Sep 17 00:00:00 2001 From: Whispering Wind <151555003+ReturnFI@users.noreply.github.com> Date: Tue, 6 May 2025 19:06:34 +0330 Subject: [PATCH] Update OS --- install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index 64f9628..07f402d 100644 --- a/install.sh +++ b/install.sh @@ -16,10 +16,10 @@ check_os_version() { fi if [[ "$os_name" == "ubuntu" && $(echo "$os_version >= 22" | bc) -eq 1 ]] || - [[ "$os_name" == "debian" && $(echo "$os_version >= 11" | bc) -eq 1 ]]; then + [[ "$os_name" == "debian" && $(echo "$os_version >= 12" | bc) -eq 1 ]]; then return 0 else - echo "This script is only supported on Ubuntu 22+ or Debian 11+." + echo "This script is only supported on Ubuntu 22+ or Debian 12+." exit 1 fi }