add a if statment to prevent a possible error

This commit is contained in:
advaithm 2021-03-12 13:42:52 +05:30
parent f249476ea7
commit 0a47dfe5d5
No known key found for this signature in database
GPG Key ID: E557E45E6DAFFC0C
1 changed files with 2 additions and 0 deletions

View File

@ -366,6 +366,8 @@ class Installer():
sys_command('/usr/bin/arch-chroot grub-mkconfig -o /boot/grub/grub.cfg')
else:
root_device = subprocess.check_output(f'basename "$(readlink -f "/sys/class/block/{self.partition.path}/..")',shell=True).decode().strip()
if root_device == "block":
root_device = f"{self.partition.path}"
o = b''.join(sys_command(f'/usr/bin/arch-chroot {self.mountpoint} grub-install --target=--target=i386-pc /dev/{root_device}'))
sys_command('/usr/bin/arch-chroot grub-mkconfig -o /boot/grub/grub.cfg')
else: