From 77710883b01f3675b38f2224e52f012da89775de Mon Sep 17 00:00:00 2001 From: codefiles <11915375+codefiles@users.noreply.github.com> Date: Mon, 12 Jun 2023 05:36:19 -0400 Subject: Update bootctl --path option to --esp-path (#1854) --- archinstall/lib/installer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'archinstall/lib/installer.py') diff --git a/archinstall/lib/installer.py b/archinstall/lib/installer.py index e3dd3f04..3fcba39c 100644 --- a/archinstall/lib/installer.py +++ b/archinstall/lib/installer.py @@ -798,10 +798,10 @@ class Installer: # Install the boot loader try: - SysCommand(f'/usr/bin/arch-chroot {self.target} bootctl --path=/boot install') + SysCommand(f'/usr/bin/arch-chroot {self.target} bootctl --esp-path=/boot install') except SysCallError: # Fallback, try creating the boot loader without touching the EFI variables - SysCommand(f'/usr/bin/arch-chroot {self.target} bootctl --no-variables --path=/boot install') + SysCommand(f'/usr/bin/arch-chroot {self.target} bootctl --no-variables --esp-path=/boot install') # Ensure that the /boot/loader directory exists before we try to create files in it if not os.path.exists(f'{self.target}/boot/loader'): -- cgit v1.2.3-54-g00ecf