From 5d6937ad84ac87d28d0b532f2897ead52ad7d9d9 Mon Sep 17 00:00:00 2001 From: Abiola Ibrahim Date: Mon, 16 Dec 2024 09:46:20 +0100 Subject: [PATCH] config: use vz as default vm type on macOS 13 or newer (#1217) Signed-off-by: Abiola Ibrahim --- environment/vm.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/environment/vm.go b/environment/vm.go index 73492209..c7586383 100644 --- a/environment/vm.go +++ b/environment/vm.go @@ -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" }