This commit is contained in:
2026-02-05 12:39:41 +01:00
parent f7bebc7f88
commit eb03edb050
4 changed files with 38 additions and 20 deletions

View File

@@ -229,7 +229,7 @@ def mount_partitions(partition_info, mount_root="/mnt"):
run_command(["mount", partition_info["root"], mount_root])
# 2. Mount EFI
efi_mount = os.path.join(mount_root, "boot/efi")
efi_mount = os.path.join(mount_root, "boot")
if not os.path.exists(efi_mount):
os.makedirs(efi_mount, exist_ok=True)