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.
This commit is contained in:
Fedor Korotkov 2022-05-16 02:44:31 -04:00 committed by GitHub
parent d1bed25023
commit 7afa446a73
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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 {