From 7381cbeca87a9f6ede7dd7feee8d9560c31ce3d9 Mon Sep 17 00:00:00 2001 From: Toni Saario Date: Wed, 17 Mar 2021 13:00:40 +0200 Subject: [PATCH] Update windows git version Older git version does not allow fetching specific revisions. This makes it impossible to fetch the integrations revision of the repository. Pick-to: 6.1 Change-Id: I513b0d1abb097d139f730ef0cdf2577b9d02e9f8 Reviewed-by: Heikki Halmet --- coin/provisioning/common/windows/install-git.ps1 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/coin/provisioning/common/windows/install-git.ps1 b/coin/provisioning/common/windows/install-git.ps1 index 110c3703..cbdcb587 100644 --- a/coin/provisioning/common/windows/install-git.ps1 +++ b/coin/provisioning/common/windows/install-git.ps1 @@ -32,15 +32,15 @@ ############################################################################# . "$PSScriptRoot\helpers.ps1" -# Install Git version 2.13.0 +# Install Git version 2.31.0 -$version = "2.13.0" +$version = "2.31.0" if (Is64BitWinHost) { $arch = "-64-bit" - $sha1 = "E1D7C6E5E16ACAF3C108064A2ED158F604FA29A7" + $sha1 = "495d78f8d961e030944d9cb53af80d909d493c3f" } else { $arch = "-32-bit" - $sha1 = "03c7df2e4ef61ea6b6f9c0eb7e6d5151d9682aec" + $sha1 = "e57c040aea297b363aefaf26424f2e7a84a4a173" } $gitPackage = "C:\Windows\Temp\Git-" + $version + $arch + ".exe" $url_cache = "\\ci-files01-hki.intra.qt.io\provisioning\windows\Git-" + $version + $arch + ".exe"