Commit 061c1c06 authored by Rob Buckley's avatar Rob Buckley
Browse files

fix typo in x86_64 arch tag

parent 5f761026
...@@ -167,12 +167,11 @@ function mac_cpython_arch_for_osx_ver { ...@@ -167,12 +167,11 @@ function mac_cpython_arch_for_osx_ver {
if [[ "$py_osx_ver" == "10.6" ]]; then if [[ "$py_osx_ver" == "10.6" ]]; then
echo "intel" echo "intel"
elif [[ "$py_osx_ver" == "10.9" ]]; then elif [[ "$py_osx_ver" == "10.9" ]]; then
echo "x86_x64" echo "x86_64"
else else
echo "Invalid python osx version: ${py_osx_ver}, supported values: 10.6 and 10.9" echo "Unexpected python osx version: ${py_osx_ver}, supported values: 10.6 and 10.9"
exit 1 exit 1
fi fi
echo
} }
function install_macpython { function install_macpython {
......
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