File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed
Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -207,12 +207,12 @@ function Get-MavenCommand {
207207 throw " Maven not found in PATH and 'mvnw.cmd' not present under $RepoDir . Install Maven or ensure the wrapper exists."
208208}
209209
210- function Get-VenvPython {
211- param ([Parameter (Mandatory )][string ]$VenvDir )
212- $py = Join-Path $VenvDir " Scripts\python.exe"
213- if (Test-Path $py ) { return $py }
214- throw " Python interpreter not found in venv: $VenvDir "
215- }
210+ # function Get-VenvPython {
211+ # param([Parameter(Mandatory)][string]$VenvDir)
212+ # $py = Join-Path $VenvDir "Scripts\python.exe"
213+ # if (Test-Path $py) { return $py }
214+ # throw "Python interpreter not found in venv: $VenvDir"
215+ # }
216216
217217function Set-PythonCmd {
218218 $candidates = @ (
Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ function Setup-Web-Python {
105105 pip3 install - r requirements.txt
106106 Log- Line " ✅ Dependencies installed" $NOW_RUN_LOG_FILE
107107
108- $env: PATH = (Join-Path $venv ' Scripts' ) + " ;" + $env: PATH
108+ # $env:PATH = (Join-Path $venv 'Scripts') + ";" + $env:PATH
109109 $env: BROWSERSTACK_USERNAME = $BROWSERSTACK_USERNAME
110110 $env: BROWSERSTACK_ACCESS_KEY = $BROWSERSTACK_ACCESS_KEY
111111
You can’t perform that action at this time.
0 commit comments