diff options
| author | Robert Schumacher <roschuma@microsoft.com> | 2017-03-24 21:53:19 -0700 |
|---|---|---|
| committer | Robert Schumacher <roschuma@microsoft.com> | 2017-03-24 21:53:19 -0700 |
| commit | 32827f98c0200778accefee62e7f185daafb97d8 (patch) | |
| tree | 497ff052c8c4e26f31d61bbb28b07adea9c3f745 | |
| parent | e253ea8f91db3ab55f4ce049f56127dd63763eee (diff) | |
| download | vcpkg-32827f98c0200778accefee62e7f185daafb97d8.tar.gz vcpkg-32827f98c0200778accefee62e7f185daafb97d8.zip | |
[vcpkg] Fix bug when downloading Git.
| -rw-r--r-- | scripts/fetchDependency.ps1 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/fetchDependency.ps1 b/scripts/fetchDependency.ps1 index 3c98f7247..6bbb9277c 100644 --- a/scripts/fetchDependency.ps1 +++ b/scripts/fetchDependency.ps1 @@ -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) } } |
