Unverified Commit b4b38f4b authored by Matti Picus's avatar Matti Picus Committed by GitHub
Browse files

Merge pull request #394 from isuruf/url

Update Python URL for 3.9.2
parents cdd6c870 630d8456
...@@ -157,7 +157,11 @@ function pyinst_fname_for_version { ...@@ -157,7 +157,11 @@ function pyinst_fname_for_version {
local py_osx_ver=${2:-$(macpython_sdk_for_version $py_version)} local py_osx_ver=${2:-$(macpython_sdk_for_version $py_version)}
local inst_ext=$(pyinst_ext_for_version $py_version) local inst_ext=$(pyinst_ext_for_version $py_version)
if [ "${PLAT:-}" == "arm64" ] || [ "${PLAT:-}" == "universal2" ]; then if [ "${PLAT:-}" == "arm64" ] || [ "${PLAT:-}" == "universal2" ]; then
echo "python-${py_version}-macos11.0.${inst_ext}" if [ "$py_version" == "3.9.1" ]; then
echo "python-${py_version}-macos11.0.${inst_ext}"
else
echo "python-${py_version}-macos11.${inst_ext}"
fi
else else
echo "python-${py_version}-macosx${py_osx_ver}.${inst_ext}" echo "python-${py_version}-macosx${py_osx_ver}.${inst_ext}"
fi fi
......
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