From 9bcdb1c85952b96cbef1b72b906c22ef1646aeb3 Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Wed, 5 Apr 2023 00:54:56 +0200 Subject: [PATCH] Disable confirmation during yay install --- scripts/Arch/Software/yay/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/Arch/Software/yay/install.sh b/scripts/Arch/Software/yay/install.sh index 4100899f..4e0d9c0c 100755 --- a/scripts/Arch/Software/yay/install.sh +++ b/scripts/Arch/Software/yay/install.sh @@ -1,7 +1,7 @@ #!/bin/bash if ! command -v yay > /dev/null 2>&1 then - sudo pacman -S --needed git base-devel + sudo pacman --noconfirm -S --needed git base-devel contextRoot="$(mktemp -d)"; git clone https://aur.archlinux.org/yay.git "$contextRoot";