Skip to content

Commit

Permalink
config: use vz as default vm type on macOS 13 or newer (#1217)
Browse files Browse the repository at this point in the history
Signed-off-by: Abiola Ibrahim <[email protected]>
  • Loading branch information
abiosoft authored Dec 16, 2024
1 parent da72ca3 commit 5d6937a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion environment/vm.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ func (a Arch) Value() Arch {
// DefaultVMType returns the default virtual machine type based on the operation
// system and availability of Qemu.
func DefaultVMType() string {
if util.AssertQemuImg() != nil && util.MacOS13OrNewer() {
if util.MacOS13OrNewer() {
return "vz"
}

Expand Down

0 comments on commit 5d6937a

Please sign in to comment.