fix(windows): remove extra -m option from aqt install
As per the documentation of aqt, we just need one `-m` and list the modules after. It seems like the first -m is ignored otherwise.
This commit is contained in:
parent
284302b486
commit
6609ebda9e
|
@ -26,7 +26,7 @@ function Install-Dependencies {
|
||||||
function Install-Qt-SDK {
|
function Install-Qt-SDK {
|
||||||
Write-Host "Installing Qt $QtVersion SDK..."
|
Write-Host "Installing Qt $QtVersion SDK..."
|
||||||
pip install aqtinstall
|
pip install aqtinstall
|
||||||
aqt install --output "C:\Qt" $QtVersion windows desktop win64_msvc2017_64 -m qtwebengine -m qtlottie
|
aqt install --output "C:\Qt" $QtVersion windows desktop win64_msvc2017_64 -m qtwebengine qtlottie
|
||||||
}
|
}
|
||||||
|
|
||||||
# Install Microsoft Visual C++ Build Tools 15.8.9
|
# Install Microsoft Visual C++ Build Tools 15.8.9
|
||||||
|
|
Loading…
Reference in New Issue