Remove the while loop from the run script

This commit is contained in:
Marc Di Luzio 2024-08-11 10:40:05 +01:00
parent 9f15b1672e
commit 715ea8c835

10
run.sh
View file

@ -2,10 +2,10 @@
set -x
set -e
source .venv/bin/activate
while python matchy.py
do
git pull
if [ -d .venv ]; then
python3 -m venv .venv
fi
source .venv/bin/activate
python -m pip install -r requirements.txt
done
python matchy.py