From 800c46e67c3c024165caa9a623f20a34ff2032a9 Mon Sep 17 00:00:00 2001 From: Jordan Petridis Date: Fri, 28 Aug 2020 19:30:41 +0300 Subject: [PATCH] docker/windows: tweak installation of git Make sure we set autocrlf to false, which is needed by cerbero. Additionally remove useless for the container integrations with the shell. Part-of: --- docker/windows/install_choco.ps1 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docker/windows/install_choco.ps1 b/docker/windows/install_choco.ps1 index f1a7c38..9fb9d13 100644 --- a/docker/windows/install_choco.ps1 +++ b/docker/windows/install_choco.ps1 @@ -2,4 +2,5 @@ Write-Host "Installing Choco" Invoke-Expression ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')) Write-Host "Installing Choco packages" choco install -y cmake --installargs 'ADD_CMAKE_TO_PATH=System' -choco install -y python3 git git-lfs 7zip \ No newline at end of file +choco install -y git --params "/NoAutoCrlf /NoCredentialManager /NoShellHereIntegration /NoGuiHereIntegration /NoShellIntegration" +choco install -y python3 git-lfs 7zip -- 2.7.4