Skip to content

Commit c87f134

Browse files
committed
Fix Python command for aqtinstall tool installation on macOS and Windows
1 parent 6066590 commit c87f134

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build_pat.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
elif [ "$RUNNER_OS" == "macOS" ]; then
6262
# Install Qt Installer Framework using aqtinstall
6363
python3 -m pip install --break-system-packages aqtinstall
64-
python -m aqt install-tool -O "${{ github.workspace }}/Qt/" mac desktop tools_ifw
64+
python3 -m aqt install-tool -O "${{ github.workspace }}/Qt/" mac desktop tools_ifw
6565
6666
# Add Qt IFW to PATH
6767
QT_IFW_DIR=$(find "${{ github.workspace }}/Qt/Tools/QtInstallerFramework" -name "bin" -type d | head -1)
@@ -72,7 +72,7 @@ jobs:
7272
elif [ "$RUNNER_OS" == "Windows" ]; then
7373
# Install Qt Installer Framework using aqtinstall
7474
python3 -m pip install --break-system-packages aqtinstall
75-
python -m aqt install-tool -O "${{ github.workspace }}/Qt/" windows desktop tools_ifw
75+
python3 -m aqt install-tool -O "${{ github.workspace }}/Qt/" windows desktop tools_ifw
7676
7777
# Add Qt IFW to PATH
7878
QT_IFW_DIR=$(find "${{ github.workspace }}/Qt/Tools/QtInstallerFramework" -name "bin" -type d | head -1)

0 commit comments

Comments
 (0)