diff --git a/main.sh b/main.sh index 8e22b85..45cfa2a 100644 --- a/main.sh +++ b/main.sh @@ -91,11 +91,11 @@ do_partition() { parted $TARGET_PHY_ID -s -- mklabel gpt sleep 2 size=512 - parted $TARGET_PHY_ID unit mib -s -- mkpart "EFI system partition" fat32 $start $(( start + size )) + parted $TARGET_PHY_ID unit mib -s -- mkpart 'EFI system partition' fat32 $start $(( start + size )) parted $TARGET_PHY_ID unit mib -s -- set 1 esp on sleep 2 start=$(( start + size )) - parted $TARGET_PHY_ID unit mib -s -- mkpart "root partition" ext4 $start -1s + parted $TARGET_PHY_ID unit mib -s -- mkpart 'root partition' ext4 $start -1s sleep 2 mkfs.vfat -F32 ${TARGET_PHY_ID}-part1 TARGET_PART="2"