Added --noconfirm flag

This commit is contained in:
Kevin Veen-Birkenbach
2025-04-01 17:22:34 +02:00
parent 5cc689d290
commit f8b53d4ed6

View File

@@ -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: