From f8b53d4ed6fc74b4e33e44797ec25cfd5c8f3f97 Mon Sep 17 00:00:00 2001 From: Kevin Veen-Birkenbach Date: Tue, 1 Apr 2025 17:22:34 +0200 Subject: [PATCH] Added --noconfirm flag --- pkgmgr/install_repos.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgmgr/install_repos.py b/pkgmgr/install_repos.py index 05ce0bb..36ed470 100644 --- a/pkgmgr/install_repos.py +++ b/pkgmgr/install_repos.py @@ -55,7 +55,7 @@ def install_repos(selected_repos, repositories_base_dir, bin_dir, all_repos, no_ if "pacman" in requirements: pacman_packages = requirements["pacman"] if pacman_packages: - cmd = "sudo pacman -S " + " ".join(pacman_packages) + cmd = "sudo pacman -S --noconfirm " + " ".join(pacman_packages) run_command(cmd, preview=preview) # Install yay packages if defined. if "yay" in requirements: