From cec8de9054395902d8f7f7ec90a3fc61ee1ba87b Mon Sep 17 00:00:00 2001 From: Nirbheek Chauhan Date: Thu, 12 Dec 2019 10:20:55 +0530 Subject: [PATCH] docker/windows: Install Python to a path without spaces This is needed for Cerbero since Autotools cannot handle paths to binaries that have spaces in them. --- docker/windows/install_toolchain.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/windows/install_toolchain.ps1 b/docker/windows/install_toolchain.ps1 index 5c50e1b195..72f3a07984 100644 --- a/docker/windows/install_toolchain.ps1 +++ b/docker/windows/install_toolchain.ps1 @@ -13,7 +13,7 @@ Remove-Item C:\vs_buildtools.exe -Force Write-Host "Installing Python" Invoke-WebRequest -Uri $python_dl_url -OutFile C:\python3-installer.exe -Start-Process C:\python3-installer.exe -ArgumentList '/quiet InstallAllUsers=1 PrependPath=1' -Wait +Start-Process C:\python3-installer.exe -ArgumentList '/quiet InstallAllUsers=1 PrependPath=1 TargetDir=C:\Python37' -Wait Remove-Item C:\python3-installer.exe -Force Write-Host "Installing Git"