diff options
| author | Ryan <fauxpark@gmail.com> | 2024-08-15 21:10:35 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-15 12:10:35 +0100 |
| commit | b07a68230d1fc8cdd6bfcbff0a5d82ef25793c20 (patch) | |
| tree | 749244996207f4094aa371167b31ba5d327e84b8 | |
| parent | dccada95aaad475ebe6da5d98fd0e2b428b19034 (diff) | |
Fix version check in Fedora install script to be >= 39 (#24281)
| -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() { | |||
| 4 | echo "Installing dependencies" | 4 | echo "Installing dependencies" |
| 5 | 5 | ||
| 6 | . /etc/os-release | 6 | . /etc/os-release |
| 7 | if [ "$VERSION_ID" == "39" ]; then | 7 | if [ "$VERSION_ID" -ge "39" ]; then |
| 8 | sudo dnf $SKIP_PROMPT copr enable erovia/dfu-programmer | 8 | sudo dnf $SKIP_PROMPT copr enable erovia/dfu-programmer |
| 9 | fi | 9 | fi |
| 10 | 10 | ||
