From 51a2ff6d527d346a87ab6204fd86767aca1a5191 Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Sat, 1 Apr 2023 14:21:30 +0200 Subject: [PATCH] Disable `pacman` confirmation --- scripts/Software/Arch/GRUB/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/Software/Arch/GRUB/install.sh b/scripts/Software/Arch/GRUB/install.sh index 3fe0c52d..4b285038 100755 --- a/scripts/Software/Arch/GRUB/install.sh +++ b/scripts/Software/Arch/GRUB/install.sh @@ -3,7 +3,7 @@ pushd "${BASH_SOURCE%/*}" > /dev/null; EFI_BOOT_DIR="${EFI_BOOT_DIR:-"/boot"}"; BOOTLOADER_ID=${BOOTLOADER_ID:-"GRUB"}; -pacman -Syu grub efibootmgr; +pacman --noconfirm -Syu grub efibootmgr; . ../../Common/GRUB/init.sh; popd > /dev/null;