Create grub dir before grub-mkconfig

This commit is contained in:
MatMoul 2018-12-22 00:12:10 +01:00
parent 6d187cefc9
commit 8ff618da76

2
archfi
View file

@ -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
}