Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib
diff options
context:
space:
mode:
authorbuilder_247 <14019974+builder-247@users.noreply.github.com>2021-05-01 00:36:40 +0300
committerGitHub <noreply@github.com>2021-05-01 00:36:40 +0300
commit8f4b8fd5ffed54a4d1f7508d4ac6380ae8b84a29 (patch)
treee72d3b1abc8a4fe79d4bc45cf579716f6570dd86 /archinstall/lib
parentfcff362b9ad85fd8ce16b63f162de62eee1e0fbb (diff)
Fix syntax error
Diffstat (limited to 'archinstall/lib')
-rw-r--r--archinstall/lib/installer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archinstall/lib/installer.py b/archinstall/lib/installer.py
index 61ac737c..331762b4 100644
--- a/archinstall/lib/installer.py
+++ b/archinstall/lib/installer.py
@@ -433,7 +433,7 @@ class Installer():
self.pacstrap('grub')
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'))
sys_command('/usr/bin/arch-chroot /mnt grub-mkconfig -o /boot/grub/grub.cfg')
return True