Skip to content

Commit

Permalink
non blocking
Browse files Browse the repository at this point in the history
  • Loading branch information
LemonHX committed Apr 15, 2022
1 parent ed450b1 commit e2a710d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/dev_setup.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ function install_build_tools {
$exePath = "$env:temp\LLVM-$llvmVersion-win64.exe"
Invoke-WebRequest -Uri "https://github.com/llvm/llvm-project/releases/download/llvmorg-$llvmVersion/LLVM-$llvmVersion-win64.exe" -OutFile $exePath
Write-Host "Installing..."
cmd /c start /wait $exePath /S
cmd /c start $exePath
Write-Host "Installed" -ForegroundColor Green
[Environment]::SetEnvironmentVariable("Path", $env:Path + ";C:\Program Files\LLVM\bin", 'User')
}
Expand All @@ -107,7 +107,7 @@ function install_build_tools {
$exePath = "$env:temp\dotnet-sdk-6.0.202-win-x64.exe"
Invoke-WebRequest -Uri "https://download.visualstudio.microsoft.com/download/pr/e4f4bbac-5660-45a9-8316-0ffc10765179/8ade57de09ce7f12d6411ed664f74eca/dotnet-sdk-6.0.202-win-x64.exe" -OutFile $exePath
Write-Host "Installing..."
cmd /c start /wait $exePath /S
cmd /c start $exePath
Write-Host "Installed" -ForegroundColor Green
}
try {
Expand Down

0 comments on commit e2a710d

Please sign in to comment.