Skip to content

Commit

Permalink
[get-boost] remove debug log
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasDuvinage authored Oct 28, 2024
1 parent e03aafe commit 88fe33a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions utils/get-boost.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ function DownloadFileWithRetry
}
catch
{
Write-Output $_
if(Test-Path $Out)
{
Remove-Item $Out
Expand All @@ -42,4 +41,4 @@ $Url = "https://sourceforge.net/projects/boost/files/boost-binaries/1.83.0/boost
$Out = "$env:TEMP\boost.exe"
echo "$Out"
DownloadFileWithRetry -Url "$Url" -Out "$Out"
Start-Process -Wait -FilePath "$Out" -ArgumentList "/SILENT", "/SP-", "/SUPPRESSMSGBOXES", "/DIR=C:\hostedtoolcache\windows\Boost\1.83.0\x86_64"
Start-Process -Wait -FilePath "$Out" -ArgumentList "/SILENT", "/SP-", "/SUPPRESSMSGBOXES", "/DIR=C:\hostedtoolcache\windows\Boost\1.82.0\x86_64"

0 comments on commit 88fe33a

Please sign in to comment.