From 2d76615f89870ecab3ff95df780d573b8e80e219 Mon Sep 17 00:00:00 2001 From: Kron4ek Date: Wed, 19 Jun 2024 20:55:19 +0300 Subject: [PATCH] Fix installation of AUR packages --- create-arch-bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/create-arch-bootstrap.sh b/create-arch-bootstrap.sh index 12dd44c..7129107 100755 --- a/create-arch-bootstrap.sh +++ b/create-arch-bootstrap.sh @@ -172,7 +172,7 @@ install_aur_packages () { fi for i in {1..10}; do - if yay --needed --noconfirm --removemake --nocleanmenu --nodiffmenu --builddir /home/aur -a -S ${aur_pkgs}; then + if yay --needed --noconfirm --removemake --builddir /home/aur -a -S ${aur_pkgs}; then break fi done