Skip to content

Commit 79ba0ea

Browse files
authored
fix: Correct virtual environment cleanup path (#140)
This pull request makes a minor update to the cleanup logic in the `build_and_run.sh` script. The change ensures that the script removes the correct virtual environment directory by updating the pattern to `.venv-release-dhib*` instead of `venv-release-dhib*`.
1 parent 2d3a965 commit 79ba0ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build_and_run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ echo "JAVA_HOME=${JAVA_HOME}"
2323
# Clean up any existing virtual environments
2424
deactivate 2>/dev/null || true # Deactivate if already in a venv
2525
rm -rf .venv-installer
26-
rm -rf venv-release-dhib*
26+
rm -rf .venv-release-dhib*
2727

2828
# Create temporary installer virtual environment
2929
# This small venv is only used to run the dhib_env.py script

0 commit comments

Comments
 (0)