summaryrefslogtreecommitdiffstats
path: root/PCbuild
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2023-08-10 09:19:14 (GMT)
committerGitHub <noreply@github.com>2023-08-10 09:19:14 (GMT)
commita71500cd2446ac460610c8d57951d02ea37b0bb6 (patch)
treedb72aa49ce5fed8354d3e8426e477da8a05769c6 /PCbuild
parent3bb43b7b1b75154bc4e94b1fa81afe296a8150d0 (diff)
downloadcpython-a71500cd2446ac460610c8d57951d02ea37b0bb6.zip
cpython-a71500cd2446ac460610c8d57951d02ea37b0bb6.tar.gz
cpython-a71500cd2446ac460610c8d57951d02ea37b0bb6.tar.bz2
[3.12] gh-107814: Avoid output from Nuget installation in find_python.bat (GH-107815) (#107823)
gh-107814: Avoid output from Nuget installation in find_python.bat (GH-107815) (cherry picked from commit 1e229e2c3d212accbd5fbe3a46cd42f8252b2868) Co-authored-by: Max Bachmann <kontakt@maxbachmann.de>
Diffstat (limited to 'PCbuild')
-rw-r--r--PCbuild/find_python.bat8
1 files changed, 6 insertions, 2 deletions
diff --git a/PCbuild/find_python.bat b/PCbuild/find_python.bat
index 7af5503..d3f62c9 100644
--- a/PCbuild/find_python.bat
+++ b/PCbuild/find_python.bat
@@ -52,7 +52,7 @@
@if "%_Py_NUGET%"=="" (set _Py_NUGET=%_Py_EXTERNALS_DIR%\nuget.exe)
@if "%_Py_NUGET_URL%"=="" (set _Py_NUGET_URL=https://aka.ms/nugetclidl)
@if NOT exist "%_Py_NUGET%" (
- @echo Downloading nuget...
+ @if not "%_Py_Quiet%"=="1" @echo Downloading nuget...
@rem NB: Must use single quotes around NUGET here, NOT double!
@rem Otherwise, a space in the path would break things
@rem If it fails, retry with any available copy of Python
@@ -63,7 +63,11 @@
)
@if not "%_Py_Quiet%"=="1" @echo Installing Python via nuget...
-@"%_Py_NUGET%" install pythonx86 -ExcludeVersion -OutputDirectory "%_Py_EXTERNALS_DIR%"
+@if not "%_Py_Quiet%"=="1" (
+ @"%_Py_NUGET%" install pythonx86 -ExcludeVersion -OutputDirectory "%_Py_EXTERNALS_DIR%"
+) else (
+ @"%_Py_NUGET%" install pythonx86 -Verbosity quiet -ExcludeVersion -OutputDirectory "%_Py_EXTERNALS_DIR%"
+)
@rem Quote it here; it's not quoted later because "py -x.y" wouldn't work
@if not errorlevel 1 (set PYTHON="%_Py_EXTERNALS_DIR%\pythonx86\tools\python.exe") & (set _Py_Python_Source=found on nuget.org) & goto :found