From 307c45766ce9f929565c8ce650b36325e4956f7c Mon Sep 17 00:00:00 2001 From: stormdragon2976 Date: Tue, 29 Nov 2022 00:01:46 -0500 Subject: [PATCH] Added noconfirm to install options for yay --- wine/install-dependencies.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wine/install-dependencies.sh b/wine/install-dependencies.sh index 9d6b7fc..4ec5f5a 100755 --- a/wine/install-dependencies.sh +++ b/wine/install-dependencies.sh @@ -65,7 +65,7 @@ configure_arch() { # Some of these may fail, so do them in a for loop. yay -Syy for i in "${packageList[@]}" ; do - yay -S --needed $i + yay -S --needed --noconfirm $i done }