diff options
author | MatMoul <matmoul@gmail.com> | 2018-12-22 00:12:10 +0100 |
---|---|---|
committer | MatMoul <matmoul@gmail.com> | 2018-12-22 00:12:10 +0100 |
commit | 8ff618da76c5423ccfe34a170e42f8a659446a6e (patch) | |
tree | 666b88b4bfb38e1c30b1a05a6300d07adbc885bc | |
parent | 6d187cefc92c5a4572eac2e5ca5b85bc0e666c67 (diff) | |
download | hyperfi-8ff618da76c5423ccfe34a170e42f8a659446a6e.tar.lz hyperfi-8ff618da76c5423ccfe34a170e42f8a659446a6e.tar.xz hyperfi-8ff618da76c5423ccfe34a170e42f8a659446a6e.zip |
Create grub dir before grub-mkconfig
-rw-r--r-- | archfi | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1100,7 +1100,9 @@ archinstallgrub(){ pressanykey } archinstallgrubchroot(){ + echo "mkdir /boot/grub" echo "grub-mkconfig -o /boot/grub/grub.cfg" + mkdir /boot/grub grub-mkconfig -o /boot/grub/grub.cfg exit } |