diff options
| author | Ryan | 2024-08-15 13:10:35 +0200 |
|---|---|---|
| committer | GitHub | 2024-08-15 13:10:35 +0200 |
| commit | b07a68230d1fc8cdd6bfcbff0a5d82ef25793c20 (patch) | |
| tree | 749244996207f4094aa371167b31ba5d327e84b8 /util | |
| parent | dccada95aaad475ebe6da5d98fd0e2b428b19034 (diff) | |
Fix version check in Fedora install script to be >= 39 (#24281)
Diffstat (limited to 'util')
| -rwxr-xr-x | util/install/fedora.sh | 2 |
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 |