From 7a155f7f75f18216beeb6e63e6d7824edcbf0e6c Mon Sep 17 00:00:00 2001 From: Rob Emery Date: Wed, 2 Oct 2019 23:59:10 +0100 Subject: [PATCH] Previously these would end up in /slax/EFI/boot but we need them in /EFI/boot --- bootfiles/bootinst.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bootfiles/bootinst.sh b/bootfiles/bootinst.sh index 23cf7bf..bc38034 100755 --- a/bootfiles/bootinst.sh +++ b/bootfiles/bootinst.sh @@ -41,8 +41,8 @@ if [ "$DEV" != "$PART" ]; then fi # UEFI boot loader -mkdir -p "EFI/Boot" -cp "boot/EFI/Boot/*" "EFI/Boot" +mkdir -p "$BOOT/../../EFI" +mv "EFI/Boot" "$BOOT/../../EFI/" echo "Boot installation finished." cd "$CWD"