11 lines
No EOL
184 B
Bash
Executable file
11 lines
No EOL
184 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -x
|
|
set -e
|
|
|
|
git pull
|
|
if [ ! -d .venv ]; then
|
|
python3 -m venv .venv
|
|
fi
|
|
source .venv/bin/activate
|
|
python -m pip install -r requirements.txt
|
|
python py/matchy.py |