From aa9f363f565228130bd465a3865788f86baa6313 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Gronowski?= Date: Thu, 11 Jun 2026 16:47:20 +0200 Subject: [PATCH] install: Deprecate Fedora < 43 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fedora versions older than 43 are now EOL for this installer path. Signed-off-by: Paweł Gronowski --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index bc39a9ae..04185598 100755 --- a/install.sh +++ b/install.sh @@ -547,7 +547,7 @@ do_install() { deprecation_notice "$lsb_dist" "$dist_version" ;; fedora.*) - if [ "$dist_version" -lt 41 ]; then + if [ "$dist_version" -lt 43 ]; then deprecation_notice "$lsb_dist" "$dist_version" fi ;;