From e1366c9a6fc00e840ee060d5e35e68bd44f9d1ce Mon Sep 17 00:00:00 2001 From: Erik Bershel <110455084+erik-bershel@users.noreply.github.com> Date: Mon, 22 May 2023 21:52:24 +0200 Subject: [PATCH] [macOS] Fix Python2 installer condition (#7624) --- images/macos/provision/core/python.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/images/macos/provision/core/python.sh b/images/macos/provision/core/python.sh index 38250d758..287070b1b 100755 --- a/images/macos/provision/core/python.sh +++ b/images/macos/provision/core/python.sh @@ -3,7 +3,7 @@ source ~/utils/utils.sh echo "Installing Python Tooling" -if ! is_Veertu; then +if is_Monterey || is_BigSur; then echo "Install latest Python 2" Python2Url="https://www.python.org/ftp/python/2.7.18/python-2.7.18-macosx10.9.pkg" download_with_retries $Python2Url "/tmp" "python2.pkg"