We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent acddcac commit 6832ef2Copy full SHA for 6832ef2
.github/workflows/qt5_6.yml
@@ -123,8 +123,8 @@ jobs:
123
echo '::group::Install official Python'
124
# We need the official Python, because the GA ones only support newer macOS versions
125
export PYTHON_VERSION=$(python3 --version | cut -d' ' -f2 | cut -d'.' -f1,2)
126
- curl "https://www.python.org/ftp/python/${PYTHON_VERSION}/python-${PYTHON_VERSION}-macos11.pkg" -o "python.pkg"
127
- sudo installer -pkg python.pkg -target /
+ curl https://www.python.org/ftp/python/${PYTHON_VERSION}/python-${PYTHON_VERSION}-macos11.pkg -o /tmp/python.pkg
+ sudo installer -pkg /tmp/python.pkg -target /
128
python3 --version
129
echo '::endgroup::'
130
0 commit comments