From 04050454f78c2341d81ad2017e7029115b22156e Mon Sep 17 00:00:00 2001 From: Kelin Date: Thu, 29 Jan 2026 21:50:43 -0500 Subject: [PATCH] Add support for Debian 13 (Trixie) in OS validation - Updated validate_os() function to accept Debian 13 - Enables testing on newer Debian versions including Raspberry Pi OS --- scripts/enhanced-setup/lib/common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/enhanced-setup/lib/common.sh b/scripts/enhanced-setup/lib/common.sh index 081cece..abe4066 100755 --- a/scripts/enhanced-setup/lib/common.sh +++ b/scripts/enhanced-setup/lib/common.sh @@ -184,7 +184,7 @@ validate_os() { "Ubuntu"|"Debian"|"Raspbian") if [[ "$OS_NAME" == "Ubuntu" && "$OS_VERSION" =~ ^(20|22|24) ]]; then return 0 - elif [[ "$OS_NAME" == "Debian" && "$OS_VERSION" =~ ^(11|12) ]]; then + elif [[ "$OS_NAME" == "Debian" && "$OS_VERSION" =~ ^(11|12|13) ]]; then return 0 elif [[ "$OS_NAME" == "Raspbian" ]]; then return 0