mirror of
https://github.com/qmk/qmk_firmware
synced 2024-11-09 13:29:26 +00:00
Fix version check in Fedora install script to be >= 39 (#24281)
This commit is contained in:
parent
dccada95aa
commit
b07a68230d
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue