Skip to content

Commit a643667

Browse files
last exit code fix (#2873)
1 parent 35a7885 commit a643667

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

scripts/load_python_env.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh
22

3-
echo 'Creating Python virtual environment "app/backend/.venv"...'
3+
echo 'Creating Python virtual environment ".venv"...'
44
python3 -m venv .venv
55

66
echo 'Installing dependencies from "requirements.txt" into virtual environment (in quiet mode)...'

scripts/prepdocs.ps1

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
$USE_CLOUD_INGESTION = (azd env get-value USE_CLOUD_INGESTION)
2-
if ($USE_CLOUD_INGESTION -eq "true") {
1+
if ((azd env get-values) -match "USE_CLOUD_INGESTION=""true""") {
32
Write-Host "Cloud ingestion is enabled, so we are not running the manual ingestion process."
43
Exit 0
54
}

0 commit comments

Comments
 (0)