Merge pull request #49 from FishyW/main

Fix dnf install command in install.sh
This commit is contained in:
Maksim Ivanov
2026-08-17 11:48:29 +03:00
committed by GitHub
+1 -1
View File
@@ -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[@]}"