From 8b0fd1e8d2ecdb703b2fcf7ff828a3e98c38d9e3 Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Mon, 22 May 2023 23:13:50 +0200 Subject: [PATCH] Add `yay` as a dependency of secure boot scripts --- scripts/Arch/Config/SecureBoot/install.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/Arch/Config/SecureBoot/install.sh b/scripts/Arch/Config/SecureBoot/install.sh index e9cea228..c4d668ed 100755 --- a/scripts/Arch/Config/SecureBoot/install.sh +++ b/scripts/Arch/Config/SecureBoot/install.sh @@ -3,6 +3,10 @@ EFI_BOOT_DIR="${EFI_BOOT_DIR:-"/boot"}"; BOOTLOADER_ID=${BOOTLOADER_ID:-"Arch"}; bootNum="$(efibootmgr | sed "/$BOOTLOADER_ID/{ s/^.*Boot\([[:digit:]]\+\)\*.*$/\1/; p; }; d")"; +pushd "${BASH_SOURCE%/*}" > /dev/null; +. "../../Software/yay/install.sh"; +popd > /dev/null; + echo $EFI_BOOT_DIR; yay --noconfirm -Syu secureboot-grub;