Skip to content

Commit

Permalink
chore: update venv directory path
Browse files Browse the repository at this point in the history
Updated the virtual environment directory path from .env to .venv in the
setup_venv.sh script to follow standard naming conventions.
  • Loading branch information
mkoura committed Nov 19, 2024
1 parent c5534c5 commit 6489bc8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/setup_venv.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

_VENV_DIR="${_VENV_DIR:-"$WORKDIR/.env"}"
_VENV_DIR="${_VENV_DIR:-"$WORKDIR/.venv"}"

if [ "${1:-""}" = "clean" ]; then
rm -rf "$_VENV_DIR"
Expand Down

0 comments on commit 6489bc8

Please sign in to comment.