Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib/installer.py
diff options
context:
space:
mode:
authorcodefiles <11915375+codefiles@users.noreply.github.com>2023-09-21 11:13:22 -0400
committerGitHub <noreply@github.com>2023-09-21 17:13:22 +0200
commit6d908e8cd7d395a1f8f2473b2dc9ca3e2ace1226 (patch)
treedd831c9218a633bfd838d6610a1e5efce76d6784 /archinstall/lib/installer.py
parentc75ae97f007f7f7d1d8921e1bd38bcc01b6035f1 (diff)
Fix `_add_efistub_bootloader()` partition number with partn (#2084)
Diffstat (limited to 'archinstall/lib/installer.py')
-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 d71e6ad3..d0aa2252 100644
--- a/archinstall/lib/installer.py
+++ b/archinstall/lib/installer.py
@@ -1085,7 +1085,7 @@ TIMEOUT=5
cmd = f'efibootmgr ' \
f'--disk {parent_dev_path} ' \
- f'--part {boot_partition.safe_dev_path} ' \
+ f'--part {boot_partition.partn} ' \
f'--create ' \
f'--label "{label}" ' \
f'--loader {loader} ' \