From bcf49369d993410b9cb2451fa6e4c333561bfb7d Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Thu, 13 Jul 2023 21:12:59 +0200 Subject: [PATCH] Install `os-prober` for grub --- scripts/Arch/Software/GRUB/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/Arch/Software/GRUB/install.sh b/scripts/Arch/Software/GRUB/install.sh index 153574ec..b92d884b 100755 --- a/scripts/Arch/Software/GRUB/install.sh +++ b/scripts/Arch/Software/GRUB/install.sh @@ -8,7 +8,7 @@ then else EFI_BOOT_DIR="${EFI_BOOT_DIR:-"/boot"}"; BOOTLOADER_ID=${BOOTLOADER_ID:-"Arch"}; - pacman --noconfirm -Syu grub efibootmgr; + pacman --noconfirm -Syu grub efibootmgr os-prober; . ../../../Common/Config/GRUB/setup.sh; fi;