From edbb68c7eae1da63e7ec63f5d623f7d484ddb79c Mon Sep 17 00:00:00 2001 From: Jeff Smith Date: Fri, 5 Apr 2024 15:54:04 -0500 Subject: [PATCH] Windows: lock git version since choco version is locked and fails to install newest (#356) --- .../ue4-build-prerequisites/windows/install-prerequisites.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ue4docker/dockerfiles/ue4-build-prerequisites/windows/install-prerequisites.ps1 b/src/ue4docker/dockerfiles/ue4-build-prerequisites/windows/install-prerequisites.ps1 index b4479331..9e36705c 100644 --- a/src/ue4docker/dockerfiles/ue4-build-prerequisites/windows/install-prerequisites.ps1 +++ b/src/ue4docker/dockerfiles/ue4-build-prerequisites/windows/install-prerequisites.ps1 @@ -21,7 +21,7 @@ $env:ChocolateyInstall = Convert-Path "$( (Get-Command choco).Path )\..\.." Import-Module "$env:ChocolateyInstall\helpers\chocolateyProfile.psm1" # Install the chocolatey packages we need -RunProcessChecked "choco" @("install", "--no-progress", "-y", "git", "--params", @' +RunProcessChecked "choco" @("install", "--no-progress", "-y", "git.install", "--version=2.43.0", "--params", @' "'/GitOnlyOnPath /NoAutoCrlf /WindowsTerminal /NoShellIntegration /NoCredentialManager'`" '@)