From b965b50009c477c9009185b58397e3e0a48f425e Mon Sep 17 00:00:00 2001 From: Jacky <15869016+possum-enjoyer@users.noreply.github.com> Date: Sat, 8 Nov 2025 23:19:20 +0100 Subject: [PATCH] fix fedora install-deps crashing on hyprland-qt-support step fix a missing v function invocation that leads to a crash if the hyprland-qt-support package is already installed --- sdata/dist-fedora/install-deps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdata/dist-fedora/install-deps.sh b/sdata/dist-fedora/install-deps.sh index b1babce98..8f813da84 100644 --- a/sdata/dist-fedora/install-deps.sh +++ b/sdata/dist-fedora/install-deps.sh @@ -51,7 +51,7 @@ v sudo dnf install --setopt="install_weak_deps=False" "${hyprland_deps[@]}" -y # The hyprland-qt-support's GitHub repository requires Qt 6.6 or higher, which I think makes DNF's requirement of Qt 6.9 too strict; it should also support Qt 6.10. # On distro like Arch Linux, `hyprland-qtutils` and `hyprland-qt-support` are in dependency chain already so no need to add them as deps explicitly; # However on Fedora, if this package is not installed, a yellow warning⚠️ will appear every time you log in to Hyprland. -v dnf download hyprland-qt-support && sudo rpm -ivh --nodeps hyprland-qt-support-*.fc$(rpm -E %fedora).$(uname -m).rpm +v dnf download hyprland-qt-support && v sudo rpm -ivh --nodeps hyprland-qt-support-*.fc$(rpm -E %fedora).$(uname -m).rpm v sudo dnf install hyprland-qtutils -y # KDE