Fix the venv check in the run script

This commit is contained in:
Marc Di Luzio 2024-08-11 10:42:10 +01:00
parent 715ea8c835
commit 405e681cbe

2
run.sh
View file

@ -3,7 +3,7 @@ set -x
set -e
git pull
if [ -d .venv ]; then
if [ ! -d .venv ]; then
python3 -m venv .venv
fi
source .venv/bin/activate