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[@]}" apt-get install -y "${DEPS[@]}"
;; ;;
dnf) dnf)
dnf install -y "${DEPS[@]} python3-dnf-plugin-post-transaction-actions" dnf install -y "${DEPS[@]}" python3-dnf-plugin-post-transaction-actions
;; ;;
pacman) pacman)
pacman -Sy --needed --noconfirm "${DEPS[@]}" pacman -Sy --needed --noconfirm "${DEPS[@]}"