diff options
| author | Chris Titus <[email protected]> | 2021-11-05 08:00:15 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-11-05 08:00:15 -0500 |
| commit | 669617188046a40a7e90760563e7206fa3ae8eaf (patch) | |
| tree | 0bef894bf99796f9c7bdd656ad8a76df3ce02fec | |
| parent | c8c47960651500ab84ab3dac98b8fa840ee38683 (diff) | |
| parent | 5db15eaeab4283d147f5e667f8cf37713caf92d5 (diff) | |
| download | ArchTitus-669617188046a40a7e90760563e7206fa3ae8eaf.tar.xz ArchTitus-669617188046a40a7e90760563e7206fa3ae8eaf.zip | |
Merge pull request #81 from d4ve10/boot-fix
Wrong boot path for grub-install
| -rwxr-xr-x | 0-preinstall.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/0-preinstall.sh b/0-preinstall.sh index 84b15d8..d7ee7f1 100755 --- a/0-preinstall.sh +++ b/0-preinstall.sh @@ -112,7 +112,7 @@ echo "--------------------------------------" echo "--GRUB BIOS Bootloader Install&Check--" echo "--------------------------------------" if [[ ! -d "/sys/firmware/efi" ]]; then - grub-install --boot-directory=/boot ${DISK} + grub-install --boot-directory=/mnt/boot ${DISK} fi echo "--------------------------------------" echo "-- Check for low memory systems <8G --" |
