11 lines
152 B
Bash
Executable file
11 lines
152 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -x
|
|
set -e
|
|
|
|
source .venv/bin/activate
|
|
|
|
while python matchy.py
|
|
do
|
|
git pull
|
|
python -m pip install -r requirements.txt
|
|
done
|