Fix the venv check in the run script
This commit is contained in:
parent
715ea8c835
commit
405e681cbe
1 changed files with 1 additions and 1 deletions
2
run.sh
2
run.sh
|
@ -3,7 +3,7 @@ set -x
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
git pull
|
git pull
|
||||||
if [ -d .venv ]; then
|
if [ ! -d .venv ]; then
|
||||||
python3 -m venv .venv
|
python3 -m venv .venv
|
||||||
fi
|
fi
|
||||||
source .venv/bin/activate
|
source .venv/bin/activate
|
||||||
|
|
Loading…
Add table
Reference in a new issue