From f910f51ad08533c8c152a48e51018f9efb1945f6 Mon Sep 17 00:00:00 2001 From: Erica Marigold Date: Sun, 7 Apr 2024 16:20:59 +0530 Subject: [PATCH] run pacman command with no-confirm --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index fdd9756..d331d1a 100644 --- a/install.sh +++ b/install.sh @@ -15,7 +15,7 @@ for dep in ${deps[@]} do if ! which $dep 2>/dev/null; then echo "[!] Dependency $dep not found!" - sudo pacman -Syy "$dep" + sudo pacman -Syy --no-confirm "$dep" else echo -e "\e[1A\e[K[*] FOUND: $dep" fi