aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorjasjuang <jasjuang@gmail.com>2017-09-22 08:14:11 -0700
committerjasjuang <jasjuang@gmail.com>2017-09-22 08:14:11 -0700
commitab50491732fbcb5e3ddbf5aa494080b67aef0f6d (patch)
treeb4eabdd9e6b73722ba51f6e34206b32f3b11942a /scripts
parent2b178b3cb6e166cec2fa7fe3741017ac49a71d04 (diff)
parent011368ef9e1754715873eb0a298f0d069210ea6c (diff)
downloadvcpkg-ab50491732fbcb5e3ddbf5aa494080b67aef0f6d.tar.gz
vcpkg-ab50491732fbcb5e3ddbf5aa494080b67aef0f6d.zip
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'scripts')
-rw-r--r--scripts/fetchDependency.ps126
1 files changed, 13 insertions, 13 deletions
diff --git a/scripts/fetchDependency.ps1 b/scripts/fetchDependency.ps1
index 13799cc73..d142f57fe 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
}
@@ -172,16 +172,16 @@ function SelectProgram([Parameter(Mandatory=$true)][string]$Dependency)
}
elseif($Dependency -eq "git")
{
- $requiredVersion = "2.0.0"
- $downloadVersion = "2.11.1"
- $url = "https://github.com/git-for-windows/git/releases/download/v2.11.1.windows.1/MinGit-2.11.1-32-bit.zip" # We choose the 32-bit version
- $downloadPath = "$downloadsDir\MinGit-2.11.1-32-bit.zip"
- $expectedDownloadedFileHash = "6ca79af09015625f350ef4ad74a75cfb001b340aec095b6963be9d45becb3bba"
+ $requiredVersion = "2.14.1"
+ $downloadVersion = "2.14.1"
+ $url = "https://github.com/git-for-windows/git/releases/download/v2.14.1.windows.1/MinGit-2.14.1-32-bit.zip" # We choose the 32-bit version
+ $downloadPath = "$downloadsDir\MinGit-2.14.1-32-bit.zip"
+ $expectedDownloadedFileHash = "77b468e0ead1e7da4cb3a1cf35dabab5210bf10457b4142f5e9430318217cdef"
# There is another copy of git.exe in MinGit\bin. However, an installed version of git add the cmd dir to the PATH.
# Therefore, choosing the cmd dir here as well.
- $executableFromDownload = "$downloadsDir\MinGit-2.11.1-32-bit\cmd\git.exe"
+ $executableFromDownload = "$downloadsDir\MinGit-2.14.1-32-bit\cmd\git.exe"
$extractionType = $ExtractionType_ZIP
- $extractionFolder = "$downloadsDir\MinGit-2.11.1-32-bit"
+ $extractionFolder = "$downloadsDir\MinGit-2.14.1-32-bit"
}
else
{