commit: b07a68230d1fc8cdd6bfcbff0a5d82ef25793c20
parent dccada95aaad475ebe6da5d98fd0e2b428b19034
Author: Ryan <fauxpark@gmail.com>
Date: Thu, 15 Aug 2024 21:10:35 +1000
Fix version check in Fedora install script to be >= 39 (#24281)
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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