From 6c14618e60811f087198baa3631dda2cfbcb7f02 Mon Sep 17 00:00:00 2001 From: Charles Zablit Date: Fri, 14 Nov 2025 11:50:30 +0100 Subject: [PATCH] [windows] refactor pip installation's Python invocation in build.ps1 --- utils/build.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/build.ps1 b/utils/build.ps1 index 1f9e5eb7687c4..9cf1b37708ba1 100644 --- a/utils/build.ps1 +++ b/utils/build.ps1 @@ -1307,7 +1307,7 @@ function Get-Dependencies { $GetPipURL = "https://bootstrap.pypa.io/get-pip.py" $GetPipPath = "$BinaryCache/$FileName/get-pip.py" $WebClient.DownloadFile($GetPipURL, $GetPipPath) - & "$BinaryCache/$FileName/python.exe" $GetPipPath + Invoke-Program -Silent "$(Get-PythonExecutable)" $GetPipPath } function Install-PIPIfNeeded {