From 7afa446a73b5f8956bc99b082b706f257f4d7df3 Mon Sep 17 00:00:00 2001 From: Fedor Korotkov Date: Mon, 16 May 2022 02:44:31 -0400 Subject: [PATCH] Change default disk size upon creation (#71) To help with frustrations like https://github.com/cirruslabs/tart/issues/44#issuecomment-1126831261 Experts will still use `--disk-size` flag to tailor disk size for their needs. --- Sources/tart/Commands/Create.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/tart/Commands/Create.swift b/Sources/tart/Commands/Create.swift index 6f05c4e..fed204c 100644 --- a/Sources/tart/Commands/Create.swift +++ b/Sources/tart/Commands/Create.swift @@ -13,7 +13,7 @@ struct Create: AsyncParsableCommand { var fromIPSW: String? @Option(help: ArgumentHelp("Disk size in Gb")) - var diskSize: UInt8 = 32 + var diskSize: UInt8 = 50 func validate() throws { if fromIPSW == nil {