Update easy-arch.sh

This commit is contained in:
Tommaso Chiti 2021-04-14 10:20:55 +02:00 committed by GitHub
parent 5bc6dcff7b
commit 5520b3731a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -165,11 +165,11 @@ arch-chroot /mnt /bin/bash -e <<EOF
# Installing GRUB.
echo "Installing GRUB on /boot."
grub-install --target=x86_64-efi --efi-directory=/boot --bootloader-id=GRUB &>/dev/null
grub-install --target=x86_64-efi --efi-directory=/efi --bootloader-id=GRUB
# Creating grub config file.
echo "Creating GRUB config file."
grub-mkconfig -o /boot/grub/grub.cfg &>/dev/null
grub-mkconfig -o /boot/grub/grub.cfg
EOF