Commit f8a6936b authored by Isuru Fernando's avatar Isuru Fernando
Browse files

Use 11.0 installer only on arm64 hardware

parent 95f1cc4a
...@@ -102,7 +102,7 @@ function macpython_sdk_list_for_version { ...@@ -102,7 +102,7 @@ function macpython_sdk_list_for_version {
local _major=${_ver%%.*} local _major=${_ver%%.*}
local _return local _return
if [ "${PLAT}" = "arm64" ]; then if [ "$(uname -m)" = "arm64" ]; then
_return="11.0" _return="11.0"
elif [ "$_major" -eq "2" ]; then elif [ "$_major" -eq "2" ]; then
[ $(lex_ver $_ver) -lt $(lex_ver 2.7.18) ] && _return="10.6" [ $(lex_ver $_ver) -lt $(lex_ver 2.7.18) ] && _return="10.6"
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment