#!/usr/bin/env bash
set -e
cd "$(dirname "$0")"
if [[ ! -d .venv ]]; then python3 -m venv .venv; fi
source .venv/bin/activate
python -m pip install -q -r requirements.txt
exec python goblin_core.py "$@"
