Skip to content

Commit

Permalink
Fix version check in Fedora install script to be >= 39 (#24281)
Browse files Browse the repository at this point in the history
  • Loading branch information
fauxpark authored Aug 15, 2024
1 parent dccada9 commit b07a682
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion util/install/fedora.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit b07a682

Please sign in to comment.