diff --git a/archinstall/lib/installer.py b/archinstall/lib/installer.py index 8c6bee22e5..bfa0b201fb 100644 --- a/archinstall/lib/installer.py +++ b/archinstall/lib/installer.py @@ -1356,10 +1356,7 @@ def _add_grub_bootloader( self.pacman.strap('efibootmgr') # TODO: Do we need? Yes, but remove from minimal_installation() instead? - boot_dir_arg = [] - if boot_partition.mountpoint and boot_partition.mountpoint != boot_dir: - boot_dir_arg.append(f'--boot-directory={boot_partition.mountpoint}') - boot_dir = boot_partition.mountpoint + boot_dir_arg = [f'--boot-directory={boot_dir}'] add_options = [ f'--target={"arm64" if platform.machine() == "aarch64" else platform.machine()}-efi',