Merge pull request #403 from builder-247/builder-247-syntax-error
Fix syntax error
This commit is contained in:
commit
960dc5a08d
|
|
@ -433,7 +433,7 @@ class Installer():
|
||||||
self.pacstrap('grub')
|
self.pacstrap('grub')
|
||||||
|
|
||||||
if hasUEFI():
|
if hasUEFI():
|
||||||
self.pacstrap('efibootmgr')`
|
self.pacstrap('efibootmgr')
|
||||||
o = b''.join(sys_command(f'/usr/bin/arch-chroot {self.target} grub-install --target=x86_64-efi --efi-directory=/boot --bootloader-id=GRUB'))
|
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')
|
sys_command('/usr/bin/arch-chroot /mnt grub-mkconfig -o /boot/grub/grub.cfg')
|
||||||
return True
|
return True
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue