From 07c8df08c6c3d18448710ac93115e93a5b30a960 Mon Sep 17 00:00:00 2001 From: Winston <57845506+FishyW@users.noreply.github.com> Date: Fri, 14 Aug 2026 11:53:34 +0700 Subject: [PATCH] Fix dnf install command in install.sh --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index d374689..c306be9 100755 --- a/install.sh +++ b/install.sh @@ -32,7 +32,7 @@ install_deps() { apt-get install -y "${DEPS[@]}" ;; dnf) - dnf install -y "${DEPS[@]} python3-dnf-plugin-post-transaction-actions" + dnf install -y "${DEPS[@]}" python3-dnf-plugin-post-transaction-actions ;; pacman) pacman -Sy --needed --noconfirm "${DEPS[@]}"