From 8e64a248142fc647812c1fad701e0323f9400a25 Mon Sep 17 00:00:00 2001 From: Matt Godbolt Date: Sun, 23 Jun 2024 19:20:57 -0500 Subject: [PATCH] WIP --- msvc-install/gh-msvc-install.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/msvc-install/gh-msvc-install.ps1 b/msvc-install/gh-msvc-install.ps1 index 98effec6..e963ff16 100644 --- a/msvc-install/gh-msvc-install.ps1 +++ b/msvc-install/gh-msvc-install.ps1 @@ -28,8 +28,8 @@ function Install $installer = "$download_path/installer.exe" New-Item -ItemType Directory -Force "$full_install_root" -# Start-Process -Wait -FilePath "$installer" -ArgumentList @("--quiet", "--installPath", "$full_install_root", "--add", "Microsoft.VisualStudio.Component.VC.Tools.x86.x64", "--add", "Microsoft.VisualStudio.Component.VC.Tools.ARM64", "--add", "Microsoft.VisualStudio.Component.VC.Tools.ARM") - Start-Process -Wait -FilePath "$installer" -ArgumentList @("--installPath", "$full_install_root", "--add", "Microsoft.VisualStudio.Component.VC.Tools.x86.x64", "--add", "Microsoft.VisualStudio.Component.VC.Tools.ARM64", "--add", "Microsoft.VisualStudio.Component.VC.Tools.ARM") + Write-Host "Installating in : $full_install_root" + Start-Process -Wait -FilePath "$installer" -ArgumentList @("--quiet", "--installPath", "$full_install_root", "--add", "Microsoft.VisualStudio.Component.VC.Tools.x86.x64", "--add", "Microsoft.VisualStudio.Component.VC.Tools.ARM64", "--add", "Microsoft.VisualStudio.Component.VC.Tools.ARM") Write-Host "Looking in : $full_install_root" Get-ChildItem -Path "$full_install_root" -Recurse Write-Host "Looked in : $full_install_root"