[vcpkg] Fix bug when downloading Git.

This commit is contained in:
Robert Schumacher 2017-03-24 21:53:19 -07:00
parent e253ea8f91
commit 32827f98c0

View File

@ -101,7 +101,7 @@ function SelectProgram([Parameter(Mandatory=$true)][string]$Dependency)
}
if (!(Test-Path $downloadPath))
{
Write-Host("Downloading $Dependency...")
Write-Verbose("Downloading $Dependency...")
(New-Object System.Net.WebClient).DownloadFile($url, $downloadPath)
}
}