aboutsummaryrefslogtreecommitdiff
path: root/scripts/fetchDependency.ps1
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-10-27 18:53:36 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2017-10-27 19:03:26 -0700
commit0796a9df0e4d171ef2c7ab4d0c16ef4dc496ee5c (patch)
treebbe9e363e3747c0a99bef97a66575cf60bed1303 /scripts/fetchDependency.ps1
parent39830efc4f1b9c9c41f6ad9c8cfbac5f408303be (diff)
downloadvcpkg-0796a9df0e4d171ef2c7ab4d0c16ef4dc496ee5c.tar.gz
vcpkg-0796a9df0e4d171ef2c7ab4d0c16ef4dc496ee5c.zip
[git] Update to 2.14.3 (was 2.14.2.3)
Diffstat (limited to 'scripts/fetchDependency.ps1')
-rw-r--r--scripts/fetchDependency.ps114
1 files changed, 7 insertions, 7 deletions
diff --git a/scripts/fetchDependency.ps1 b/scripts/fetchDependency.ps1
index 90de17717..89e37c428 100644
--- a/scripts/fetchDependency.ps1
+++ b/scripts/fetchDependency.ps1
@@ -172,16 +172,16 @@ function SelectProgram([Parameter(Mandatory=$true)][string]$Dependency)
}
elseif($Dependency -eq "git")
{
- $requiredVersion = "2.14.2"
- $downloadVersion = "2.14.2"
- $url = "https://github.com/git-for-windows/git/releases/download/v2.14.2.windows.3/MinGit-2.14.2.3-32-bit.zip" # We choose the 32-bit version
- $downloadPath = "$downloadsDir\MinGit-2.14.2.3-32-bit.zip"
- $expectedDownloadedFileHash = "7cc1f27e1cfe79381e1a504a5fc7bc33951ac9031cd14c3bf478769d21a26cce"
+ $requiredVersion = "2.14.3"
+ $downloadVersion = "2.14.3"
+ $url = "https://github.com/git-for-windows/git/releases/download/v2.14.3.windows.1/MinGit-2.14.3-32-bit.zip"
+ $downloadPath = "$downloadsDir\MinGit-2.14.3-32-bit.zip"
+ $expectedDownloadedFileHash = "a91385acb1da220612790807c41d0f304b41093c474b9d7342230ec194a3398e"
# 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.14.2.3-32-bit\cmd\git.exe"
+ $executableFromDownload = "$downloadsDir\MinGit-2.14.3-32-bit\cmd\git.exe"
$extractionType = $ExtractionType_ZIP
- $extractionFolder = "$downloadsDir\MinGit-2.14.2.3-32-bit"
+ $extractionFolder = "$downloadsDir\MinGit-2.14.3-32-bit"
}
elseif($Dependency -eq "installerbase")
{