added return true

This commit is contained in:
advaithm 2021-04-20 21:21:17 +05:30
parent 85a8215eb7
commit a02c35920d
No known key found for this signature in database
GPG Key ID: E557E45E6DAFFC0C
1 changed files with 2 additions and 0 deletions

View File

@ -428,12 +428,14 @@ class Installer():
if hasUEFI():
o = b''.join(sys_command(f'/usr/bin/arch-chroot {self.target} grub-install --target=x86_64-efi --efi-directory=/boot --bootloader-id=GRUB'))
sys_command('/usr/bin/arch-chroot /mnt grub-mkconfig -o /boot/grub/grub.cfg')
return True
else:
root_device = subprocess.check_output(f'basename "$(readlink -f /sys/class/block/{root_partition.path.replace("/dev/","")}/..)"', shell=True).decode().strip()
if root_device == "block":
root_device = f"{root_partition.path}"
o = b''.join(sys_command(f'/usr/bin/arch-chroot {self.target} grub-install --target=i386-pc /dev/{root_device}'))
sys_command('/usr/bin/arch-chroot /mnt grub-mkconfig -o /boot/grub/grub.cfg')
return True
else:
raise RequirementError(f"Unknown (or not yet implemented) bootloader requested: {bootloader}")