mirror of
https://github.com/parchlinux/calamares.git
synced 2025-06-29 18:35:37 -04:00
Fix sgdisk call
This commit is contained in:
parent
1f9e7b5ae9
commit
220ea34aeb
1 changed files with 1 additions and 1 deletions
|
@ -134,7 +134,7 @@ def install_bootloader(boot_loader, fw_type):
|
|||
boot_p = boot_device[-1:]
|
||||
device = boot_device[:-1]
|
||||
print(device)
|
||||
subprocess.call(['sgdisk', '--typecode=%s:EF00 %s' % (boot_p, device)])
|
||||
subprocess.call(["sgdisk", "--typecode=%s:EF00" % boot_p, "%s" % device])
|
||||
subprocess.call(
|
||||
["gummiboot", "--path=%s/boot" % install_path, "install"])
|
||||
create_conf(uuid, conf_path)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue