mirror of https://github.com/cirruslabs/tart.git
fix: correct typo in validation error message for nested virtualization support (#1050)
This commit is contained in:
parent
cb92a3fa67
commit
318202fa81
|
|
@ -290,7 +290,7 @@ struct Run: AsyncParsableCommand {
|
|||
|
||||
if nested {
|
||||
if #unavailable(macOS 15) {
|
||||
throw ValidationError("Nested virtualization is supported on hosts starting with macOS 15 (Sequia), and later.")
|
||||
throw ValidationError("Nested virtualization is supported on hosts starting with macOS 15 (Sequoia), and later.")
|
||||
} else if !VZGenericPlatformConfiguration.isNestedVirtualizationSupported {
|
||||
throw ValidationError("Nested virtualization is available for Mac with the M3 chip, and later.")
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue