aboutsummaryrefslogtreecommitdiff
path: root/scripts/fetchDependency.ps1
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2018-01-23 15:08:52 -0800
committerAlexander Karatarakis <alkarata@microsoft.com>2018-01-23 15:08:52 -0800
commite5b0de35d37b0df531fbcc7567fe849aef0b2b85 (patch)
tree030b7f7984b9a169c0076c062ccc18d04d3da420 /scripts/fetchDependency.ps1
parent0df743d6252efda732c00daa48cef28acbf3f078 (diff)
downloadvcpkg-e5b0de35d37b0df531fbcc7567fe849aef0b2b85.tar.gz
vcpkg-e5b0de35d37b0df531fbcc7567fe849aef0b2b85.zip
[vswhere] Update to 2.3.2
Diffstat (limited to 'scripts/fetchDependency.ps1')
-rw-r--r--scripts/fetchDependency.ps18
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/fetchDependency.ps1 b/scripts/fetchDependency.ps1
index 6bb87fec4..463b6f243 100644
--- a/scripts/fetchDependency.ps1
+++ b/scripts/fetchDependency.ps1
@@ -40,11 +40,11 @@ function SelectProgram([Parameter(Mandatory=$true)][string]$Dependency)
}
elseif($Dependency -eq "vswhere")
{
- $requiredVersion = "2.2.11"
- $downloadVersion = "2.2.11"
- $url = "https://github.com/Microsoft/vswhere/releases/download/2.2.11/vswhere.exe"
+ $requiredVersion = "2.3.2"
+ $downloadVersion = "2.3.2"
+ $url = "https://github.com/Microsoft/vswhere/releases/download/2.3.2/vswhere.exe"
$downloadPath = "$downloadsDir\vswhere-$downloadVersion\vswhere.exe"
- $expectedDownloadedFileHash = "0235c2cb6341978abdf32e27fcf1d7af5cb5514c035e529c4cd9283e6f1a261f"
+ $expectedDownloadedFileHash = "103f2784c4b2c8e70c7c1c03687abbf22bce052aae30639406e4e13ffa29ee04"
$executableFromDownload = $downloadPath
$extractionType = $ExtractionType_NO_EXTRACTION_REQUIRED
}