12 lines
168 B
Bash
12 lines
168 B
Bash
unset workdir
|
|
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" > /dev/null 2>&1 && pwd)"
|
|
. "$DIR/prelude.sh"
|
|
|
|
set -o errexit
|
|
set -o verbose
|
|
|
|
cd src
|
|
|
|
activate_venv
|
|
$python $@
|