aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authoratkawa7 <atkawa7@yahoo.com>2017-08-11 09:02:36 -0700
committerGitHub <noreply@github.com>2017-08-11 09:02:36 -0700
commit8b09cb2efed9323133e54429a84be39c8c6c850f (patch)
tree7b17a2f0adcde8fdc85992782dd1989a91dcc1ee /scripts
parent443ab4850a3469ce500d96f7e10ef2d7af197615 (diff)
downloadvcpkg-8b09cb2efed9323133e54429a84be39c8c6c850f.tar.gz
vcpkg-8b09cb2efed9323133e54429a84be39c8c6c850f.zip
update make to 3.9.1
Diffstat (limited to 'scripts')
-rw-r--r--scripts/fetchDependency.ps112
1 files changed, 6 insertions, 6 deletions
diff --git a/scripts/fetchDependency.ps1 b/scripts/fetchDependency.ps1
index 13799cc73..6941ed21e 100644
--- a/scripts/fetchDependency.ps1
+++ b/scripts/fetchDependency.ps1
@@ -151,12 +151,12 @@ function SelectProgram([Parameter(Mandatory=$true)][string]$Dependency)
if($Dependency -eq "cmake")
{
- $requiredVersion = "3.9.0"
- $downloadVersion = "3.9.0"
- $url = "https://cmake.org/files/v3.9/cmake-3.9.0-win32-x86.zip"
- $downloadPath = "$downloadsDir\cmake-3.9.0-win32-x86.zip"
- $expectedDownloadedFileHash = "9d593839f64b94718a1b75b8519b56ecb959e4d37d406bf2a087e2c1f7a6b89c"
- $executableFromDownload = "$downloadsDir\cmake-3.9.0-win32-x86\bin\cmake.exe"
+ $requiredVersion = "3.9.1"
+ $downloadVersion = "3.9.1"
+ $url = "https://cmake.org/files/v3.9/cmake-3.9.1-win32-x86.zip"
+ $downloadPath = "$downloadsDir\cmake-3.9.1-win32-x86.zip"
+ $expectedDownloadedFileHash = "e0d9501bd34e3100e925dcb2e07f5f0ce8980bdbe5fce0ae950b21368d54c1a1"
+ $executableFromDownload = "$downloadsDir\cmake-3.9.1-win32-x86\bin\cmake.exe"
$extractionType = $ExtractionType_ZIP
$extractionFolder = $downloadsDir
}