From d9b41a787ce4f4aa21ae242f77ec5bc7ad630293 Mon Sep 17 00:00:00 2001 From: d8ahazard Date: Fri, 6 Jan 2023 12:34:06 -0600 Subject: [PATCH] Handle spaces when creating venv. --- webui.ps1 | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/webui.ps1 b/webui.ps1 index de6916a7..98c01866 100644 --- a/webui.ps1 +++ b/webui.ps1 @@ -28,13 +28,15 @@ function Start-Venv { if (Test-Path -Path "$VENV_DIR\Scripts\$python") { Activate-Venv } else { - $PYTHON_FULLNAME = & $PYTHON -c "import sys; print(sys.executable)" - Write-Output "Creating venv in directory $VENV_DIR using python $PYTHON_FULLNAME" - Invoke-Expression "$PYTHON_FULLNAME -m venv $VENV_DIR > tmp/stdout.txt 2> tmp/stderr.txt" - if ($LASTEXITCODE -eq 0) { - Activate-Venv - } else { + $global:LASTEXITCODE = 0 + try { + $PYTHON_FULLNAME = & $PYTHON -c "import sys; print(sys.executable)" + Write-Output "Creating venv in directory $VENV_DIR using $PYTHON_FULLNAME" + Invoke-Expression "& '$PYTHON_FULLNAME' -m venv $VENV_DIR" + Activate-Venv + } Catch { Write-Output "Unable to create venv in directory $VENV_DIR" + Write-Output $_ } } }