Skip GRUB config if user supplies empty response
This commit is contained in:
@@ -320,6 +320,10 @@ build-gentoo-chroot() {
|
|||||||
build-bootloader() {
|
build-bootloader() {
|
||||||
# Last few chroot steps, mostly involving GRUB
|
# Last few chroot steps, mostly involving GRUB
|
||||||
read -p "Enter device to install GRUB to: " grubdev
|
read -p "Enter device to install GRUB to: " grubdev
|
||||||
|
if [ -z "$grubdev" ]; then
|
||||||
|
log "Skipping"
|
||||||
|
return 0
|
||||||
|
fi
|
||||||
log "Configuring GRUB"
|
log "Configuring GRUB"
|
||||||
[ -f /boot/grub ] && rm /boot/grub -f
|
[ -f /boot/grub ] && rm /boot/grub -f
|
||||||
[ -d /boot/grub ] || mkdir /boot/grub -p
|
[ -d /boot/grub ] || mkdir /boot/grub -p
|
||||||
|
Reference in New Issue
Block a user