diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2017-10-27 18:53:36 -0700 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2017-10-27 19:03:26 -0700 |
| commit | 0796a9df0e4d171ef2c7ab4d0c16ef4dc496ee5c (patch) | |
| tree | bbe9e363e3747c0a99bef97a66575cf60bed1303 /scripts | |
| parent | 39830efc4f1b9c9c41f6ad9c8cfbac5f408303be (diff) | |
| download | vcpkg-0796a9df0e4d171ef2c7ab4d0c16ef4dc496ee5c.tar.gz vcpkg-0796a9df0e4d171ef2c7ab4d0c16ef4dc496ee5c.zip | |
[git] Update to 2.14.3 (was 2.14.2.3)
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/bootstrap.ps1 | 2 | ||||
| -rw-r--r-- | scripts/fetchDependency.ps1 | 14 |
2 files changed, 8 insertions, 8 deletions
diff --git a/scripts/bootstrap.ps1 b/scripts/bootstrap.ps1 index b874afd8c..4488d9b95 100644 --- a/scripts/bootstrap.ps1 +++ b/scripts/bootstrap.ps1 @@ -13,7 +13,7 @@ $gitHash = "unknownhash" $oldpath = $env:path try { - $env:path += ";$vcpkgRootDir\downloads\MinGit-2.14.1-32-bit\cmd" + $env:path += ";$vcpkgRootDir\downloads\MinGit-2.14.3-32-bit\cmd" if (Get-Command "git" -ErrorAction SilentlyContinue) { $gitHash = git log HEAD -n 1 --format="%cd-%H" --date=short 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") { |
