mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 14:56:36 +00:00
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.
This commit is contained in:
parent
ddf9f8962f
commit
cec8de9054
1 changed files with 1 additions and 1 deletions
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue