aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-11-03 16:40:28 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2017-11-03 16:40:28 -0700
commitad884fc2966c0d8fdff6835d481fd301bfc438ad (patch)
treeb88e5c87aa9744f98187774671a81ecdb5fad49b /scripts
parenta4dc2d2ef29654df9587d60f586c2eea16dedaaf (diff)
downloadvcpkg-ad884fc2966c0d8fdff6835d481fd301bfc438ad.tar.gz
vcpkg-ad884fc2966c0d8fdff6835d481fd301bfc438ad.zip
[vswhere] Update to 2.2.11 (was 2.2.7)
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 593cba2a6..f78d159d0 100644
--- a/scripts/fetchDependency.ps1
+++ b/scripts/fetchDependency.ps1
@@ -181,11 +181,11 @@ function SelectProgram([Parameter(Mandatory=$true)][string]$Dependency)
}
elseif($Dependency -eq "vswhere")
{
- $requiredVersion = "2.2.7"
- $downloadVersion = "2.2.7"
- $url = "https://github.com/Microsoft/vswhere/releases/download/2.2.7/vswhere.exe"
+ $requiredVersion = "2.2.11"
+ $downloadVersion = "2.2.11"
+ $url = "https://github.com/Microsoft/vswhere/releases/download/2.2.11/vswhere.exe"
$downloadPath = "$downloadsDir\vswhere-$downloadVersion\vswhere.exe"
- $expectedDownloadedFileHash = "f50303881da706132516d9decfd5314d524a0044daf49c0cfd21dc39c1261ec3"
+ $expectedDownloadedFileHash = "0235c2cb6341978abdf32e27fcf1d7af5cb5514c035e529c4cd9283e6f1a261f"
$executableFromDownload = $downloadPath
$extractionType = $ExtractionType_NO_EXTRACTION_REQUIRED
}