From f8146b5e1c9ee81fda0fb9f28402fd7bd77d371e Mon Sep 17 00:00:00 2001 From: Matt Date: Fri, 12 Dec 2025 15:41:52 -0800 Subject: [PATCH] last exit code fix --- scripts/load_python_env.sh | 2 +- scripts/prepdocs.ps1 | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/scripts/load_python_env.sh b/scripts/load_python_env.sh index 49622244d2..8b848ff596 100755 --- a/scripts/load_python_env.sh +++ b/scripts/load_python_env.sh @@ -1,6 +1,6 @@ #!/bin/sh -echo 'Creating Python virtual environment "app/backend/.venv"...' +echo 'Creating Python virtual environment ".venv"...' python3 -m venv .venv echo 'Installing dependencies from "requirements.txt" into virtual environment (in quiet mode)...' diff --git a/scripts/prepdocs.ps1 b/scripts/prepdocs.ps1 index d21329e5bd..06d3ada617 100755 --- a/scripts/prepdocs.ps1 +++ b/scripts/prepdocs.ps1 @@ -1,5 +1,4 @@ -$USE_CLOUD_INGESTION = (azd env get-value USE_CLOUD_INGESTION) -if ($USE_CLOUD_INGESTION -eq "true") { +if ((azd env get-values) -match "USE_CLOUD_INGESTION=""true""") { Write-Host "Cloud ingestion is enabled, so we are not running the manual ingestion process." Exit 0 }