From 6609ebda9e10a265dc38754a17420349efbc3390 Mon Sep 17 00:00:00 2001 From: Jonathan Rainville Date: Mon, 21 Nov 2022 16:29:48 -0500 Subject: [PATCH] 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. --- scripts/windows_build_setup.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/windows_build_setup.ps1 b/scripts/windows_build_setup.ps1 index 6f9e3c0e4f..4e77b5061b 100644 --- a/scripts/windows_build_setup.ps1 +++ b/scripts/windows_build_setup.ps1 @@ -26,7 +26,7 @@ function Install-Dependencies { function Install-Qt-SDK { Write-Host "Installing Qt $QtVersion SDK..." 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