summaryrefslogtreecommitdiff
path: root/evergreen/run_python_script.sh
blob: 746c229e9d8ad1fbf741867051e710315932bed1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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
echo $python $@
$python "$@"