first try for a parted fix

This commit is contained in:
Andreas Zweili 2021-12-20 15:42:58 +01:00
parent 490d402c3f
commit 3c0b94bb55
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ def get_disk_to_format():
def create_partition_table(disk):
print("Create partition table.")
_run_command(["parted", disk, "--", "mklabel", "gpt"])
_run_command(["parted", "--script", disk, "mklabel", "gpt"])
def _partition_suffix(disk):