Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Hvornum <anton@hvornum.se>2021-05-01 09:48:49 +0000
committerGitHub <noreply@github.com>2021-05-01 09:48:49 +0000
commit960dc5a08dee18c421c9de97b146cf4546aa8ab4 (patch)
treee72d3b1abc8a4fe79d4bc45cf579716f6570dd86
parentfcff362b9ad85fd8ce16b63f162de62eee1e0fbb (diff)
parent8f4b8fd5ffed54a4d1f7508d4ac6380ae8b84a29 (diff)
Merge pull request #403 from builder-247/builder-247-syntax-error
Fix syntax error
-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