Previously these would end up in /slax/EFI/boot but we need them in /EFI/boot

pull/84/head
Rob Emery 2019-10-02 23:59:10 +01:00 committed by GitHub
parent a2b6006187
commit 7a155f7f75
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -41,8 +41,8 @@ if [ "$DEV" != "$PART" ]; then
fi fi
# UEFI boot loader # UEFI boot loader
mkdir -p "EFI/Boot" mkdir -p "$BOOT/../../EFI"
cp "boot/EFI/Boot/*" "EFI/Boot" mv "EFI/Boot" "$BOOT/../../EFI/"
echo "Boot installation finished." echo "Boot installation finished."
cd "$CWD" cd "$CWD"