From 7f51cabd0a0c0a80ed47b163aa3e9433551bcb9b Mon Sep 17 00:00:00 2001 From: Chip Kent <5250374+chipkent@users.noreply.github.com> Date: Thu, 12 Feb 2026 10:48:09 -0700 Subject: [PATCH] fix: Correct virtual environment cleanup path to match actual directory naming The cleanup command was missing the leading dot in the venv directory pattern, causing it to fail to remove the correct directories created by the build process. --- build_and_run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_and_run.sh b/build_and_run.sh index 48a5187e..c8d253c0 100755 --- a/build_and_run.sh +++ b/build_and_run.sh @@ -23,7 +23,7 @@ echo "JAVA_HOME=${JAVA_HOME}" # Clean up any existing virtual environments deactivate 2>/dev/null || true # Deactivate if already in a venv rm -rf .venv-installer -rm -rf venv-release-dhib* +rm -rf .venv-release-dhib* # Create temporary installer virtual environment # This small venv is only used to run the dhib_env.py script