From b07a68230d1fc8cdd6bfcbff0a5d82ef25793c20 Mon Sep 17 00:00:00 2001 From: Ryan Date: Thu, 15 Aug 2024 21:10:35 +1000 Subject: [PATCH] Fix version check in Fedora install script to be >= 39 (#24281) --- util/install/fedora.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/install/fedora.sh b/util/install/fedora.sh index d3bc90b1765..0b93326bbfc 100755 --- a/util/install/fedora.sh +++ b/util/install/fedora.sh @@ -4,7 +4,7 @@ _qmk_install() { echo "Installing dependencies" . /etc/os-release - if [ "$VERSION_ID" == "39" ]; then + if [ "$VERSION_ID" -ge "39" ]; then sudo dnf $SKIP_PROMPT copr enable erovia/dfu-programmer fi