aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-10-17 14:08:30 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2017-10-17 14:08:30 -0700
commit508c21a6f8dece3c2793b302a926d1e663eb8526 (patch)
tree3f6ec81e7f69f383958d784d3336db3c62254fb9 /scripts
parentfa4e54a37356ad0200ce6387541ef78997b8a87e (diff)
downloadvcpkg-508c21a6f8dece3c2793b302a926d1e663eb8526.tar.gz
vcpkg-508c21a6f8dece3c2793b302a926d1e663eb8526.zip
[vswhere] Update to 2.2.7 (was 2.2.3)
Diffstat (limited to 'scripts')
-rw-r--r--scripts/fetchDependency.ps18
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/fetchDependency.ps1 b/scripts/fetchDependency.ps1
index 86bf103a8..1677cb869 100644
--- a/scripts/fetchDependency.ps1
+++ b/scripts/fetchDependency.ps1
@@ -148,11 +148,11 @@ function SelectProgram([Parameter(Mandatory=$true)][string]$Dependency)
}
elseif($Dependency -eq "vswhere")
{
- $requiredVersion = "2.2.3"
- $downloadVersion = "2.2.3"
- $url = "https://github.com/Microsoft/vswhere/releases/download/2.2.3/vswhere.exe"
+ $requiredVersion = "2.2.7"
+ $downloadVersion = "2.2.7"
+ $url = "https://github.com/Microsoft/vswhere/releases/download/2.2.7/vswhere.exe"
$downloadPath = "$downloadsDir\vswhere-$downloadVersion\vswhere.exe"
- $expectedDownloadedFileHash = "5f19066ac91635ad17d33fe0f79fc63c672a46f98c0358589a90163bcb2733e8"
+ $expectedDownloadedFileHash = "f50303881da706132516d9decfd5314d524a0044daf49c0cfd21dc39c1261ec3"
$executableFromDownload = $downloadPath
$extractionType = $ExtractionType_NO_EXTRACTION_REQUIRED
}