diff --git a/Sources/tart/Commands/Set.swift b/Sources/tart/Commands/Set.swift index c7175c2..698a7d7 100644 --- a/Sources/tart/Commands/Set.swift +++ b/Sources/tart/Commands/Set.swift @@ -11,7 +11,7 @@ struct Set: AsyncParsableCommand { var cpu: UInt16? @Option(help: "VM memory size in megabytes") - var memory: UInt16? + var memory: UInt64? @Option(help: "VM display resolution in a format of x. For example, 1200x800") var display: VMDisplayConfig? @@ -29,7 +29,7 @@ struct Set: AsyncParsableCommand { } if let memory = memory { - try vmConfig.setMemory(memorySize: UInt64(memory) * 1024 * 1024) + try vmConfig.setMemory(memorySize: memory * 1024 * 1024) } if let display = display {