Skip to content
This repository has been archived by the owner on Sep 11, 2021. It is now read-only.

wait for the installation of windows-build-tools #225

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion ps1/launch-installer.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ function runInstaller {
cd $BuildToolsInstallerPath

if ($VisualStudioVersion -eq "2017") {
$params = "--norestart", "--quiet", "--includeRecommended", "--add", "Microsoft.VisualStudio.Workload.VCTools"
$params = "--norestart", "--quiet", "--includeRecommended", "--add", "Microsoft.VisualStudio.Workload.VCTools", "--wait"
./vs_BuildTools.exe $params
} else {
$params = "/NoRestart", "/S", "/L", "`"$BuildToolsInstallerPath\build-tools-log.txt`""
Expand Down