util/run.sh

7 lines
203 B
Bash
Raw Permalink Normal View History

#!/bin/bash
cd "$(dirname "$0")"
setup_bot() { python3 -m venv "$PWD/env" && "$PWD"/env/bin/pip install -r requirements.txt; };
[ ! -d "$PWD/env" ] && setup_bot
exec "$PWD"/env/bin/python "$PWD"/bot.py