From 59805f59ab6cb5786cb20a24eca822271bbeb94f Mon Sep 17 00:00:00 2001 From: Alexey-Ayupov <116575425+Alexey-Ayupov@users.noreply.github.com> Date: Wed, 4 Oct 2023 15:44:28 +0200 Subject: [PATCH] [macOS] Exclude virtualbox from macOS 13 arm64 (#8469) --- images/macos/provision/core/commonutils.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/images/macos/provision/core/commonutils.sh b/images/macos/provision/core/commonutils.sh index fe1e09a6..350f8705 100644 --- a/images/macos/provision/core/commonutils.sh +++ b/images/macos/provision/core/commonutils.sh @@ -14,7 +14,7 @@ cask_packages=$(get_toolset_value '.brew.cask_packages[]') for package in $cask_packages; do echo "Installing $package..." if [[ $package == "virtualbox" ]]; then - if ! is_Ventura; then + if ! is_Ventura || ! is_VenturaArm64; then # VirtualBox 7 crashes # macOS host: Dropped all kernel extensions. VirtualBox relies fully on the hypervisor and vmnet frameworks provided by Apple now. vbcask_url="https://raw.githubusercontent.com/Homebrew/homebrew-cask/aa3c55951fc9d687acce43e5c0338f42c1ddff7b/Casks/virtualbox.rb"