From 09f23e7ccd1700f4c904443def90dda7eac82a56 Mon Sep 17 00:00:00 2001 From: Stephan Raabe Date: Mon, 25 Dec 2023 14:49:10 +0100 Subject: [PATCH] Updates --- .install/library.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.install/library.sh b/.install/library.sh index 21f2ccc..5826d45 100755 --- a/.install/library.sh +++ b/.install/library.sh @@ -81,7 +81,7 @@ _forcePackagesPacman() { fi; # printf "Package not installed:\n%s\n" "${toInstall[@]}"; - sudo pacman --noconfirm -S "${toInstall[@]}"; + sudo pacman --noconfirm -S "${toInstall[@]}" --ask 4; } _installPackagesYay() { @@ -115,7 +115,7 @@ _forcePackagesYay() { fi; # printf "AUR packags not installed:\n%s\n" "${toInstall[@]}"; - yay --noconfirm -S "${toInstall[@]}"; + yay --noconfirm -S "${toInstall[@]}" --ask 4; } # ------------------------------------------------------