Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/load_python_env.sh
Original file line number Diff line number Diff line change
@@ -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)...'
Expand Down
3 changes: 1 addition & 2 deletions scripts/prepdocs.ps1
Original file line number Diff line number Diff line change
@@ -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
}
Expand Down