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

fix shell errors

parent b5f8b853
...@@ -25,6 +25,7 @@ if [ -n "$IS_MACOS" ]; then ...@@ -25,6 +25,7 @@ if [ -n "$IS_MACOS" ]; then
ARCH_FLAGS=${ARCH_FLAGS:-"-arch arm64"} ARCH_FLAGS=${ARCH_FLAGS:-"-arch arm64"}
elif [[ $PLAT == universal2 ]]; then elif [[ $PLAT == universal2 ]]; then
# Do nothing as we are going with fusing wheels # Do nothing as we are going with fusing wheels
ARCH_FLAGS=${ARCH_FLAGS:-}
else else
echo "invalid platform = '$PLAT', supported values are 'intel' or 'x86_64' or 'arm64' or 'universal2'" echo "invalid platform = '$PLAT', supported values are 'intel' or 'x86_64' or 'arm64' or 'universal2'"
exit 1 exit 1
......
...@@ -103,7 +103,7 @@ function macpython_sdk_list_for_version { ...@@ -103,7 +103,7 @@ function macpython_sdk_list_for_version {
local _major=${_ver%%.*} local _major=${_ver%%.*}
local _return local _return
if [ "${PLAT:-}" == "arm64" ] || [ "${PLAT:-}" == "universal2" ]; then if [ "${PLAT}" = "arm64" ] || [ "${PLAT}" = "universal2" ]; 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