summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2024-08-15 21:10:35 +1000
committerGitHub <noreply@github.com>2024-08-15 12:10:35 +0100
commitb07a68230d1fc8cdd6bfcbff0a5d82ef25793c20 (patch)
tree749244996207f4094aa371167b31ba5d327e84b8
parentdccada95aaad475ebe6da5d98fd0e2b428b19034 (diff)
Fix version check in Fedora install script to be >= 39 (#24281)0.25.21
-rwxr-xr-xutil/install/fedora.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/install/fedora.sh b/util/install/fedora.sh
index d3bc90b176..0b93326bbf 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