File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -68,15 +68,21 @@ jobs:
6868
6969 if ($PYTHON_39_EXE) {
7070 Write-Host "Priming Python 3.9 by forcing KB rebuild..."
71- & $PYTHON_39_EXE -m omnipkg.cli reset --yes 2>$null
71+ Write-Host "Command: $PYTHON_39_EXE -m omnipkg.cli reset --yes"
72+ & $PYTHON_39_EXE -m omnipkg.cli reset --yes
73+ Write-Host "Exit code: $LASTEXITCODE"
7274 }
7375 if ($PYTHON_310_EXE) {
7476 Write-Host "Priming Python 3.10 by forcing KB rebuild..."
75- & $PYTHON_310_EXE -m omnipkg.cli reset --yes 2>$null
77+ Write-Host "Command: $PYTHON_310_EXE -m omnipkg.cli reset --yes"
78+ & $PYTHON_310_EXE -m omnipkg.cli reset --yes
79+ Write-Host "Exit code: $LASTEXITCODE"
7680 }
7781 if ($PYTHON_311_EXE) {
7882 Write-Host "Priming Python 3.11 by forcing KB rebuild..."
79- & $PYTHON_311_EXE -m omnipkg.cli reset --yes 2>$null
83+ Write-Host "Command: $PYTHON_311_EXE -m omnipkg.cli reset --yes"
84+ & $PYTHON_311_EXE -m omnipkg.cli reset --yes
85+ Write-Host "Exit code: $LASTEXITCODE"
8086 }
8187
8288 Write-Host "✅ All Python environments primed."
You can’t perform that action at this time.
0 commit comments