File tree Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change 11#! /bin/bash -e -o pipefail
22
3+ source ~ /utils/utils.sh
4+
5+ # Close System Preferences window because in Ventura arm64 it is opened by default on Apperance tab
6+ if is_VenturaArm64; then
7+ echo " Close System Preferences window"
8+ osascript -e ' tell application "System Preferences" to quit'
9+ fi
10+
311retry=10
412while [ $retry -gt 0 ]; do
513 openwindows=$( osascript -e ' tell application "System Events" to get every window of (every process whose class of windows contains window)' ) && break
Original file line number Diff line number Diff line change @@ -162,6 +162,7 @@ build {
162162 provisioner "shell" {
163163 pause_before = " 30s"
164164 scripts = [
165+ " ./provision/core/open_windows_check.sh" ,
165166 " ./provision/core/powershell.sh" ,
166167 " ./provision/core/mono.sh" ,
167168 " ./provision/core/dotnet.sh" ,
You can’t perform that action at this time.
0 commit comments