HPI/with_my.example
2019-09-17 21:39:18 +04:00

10 lines
149 B
Bash
Executable file

#!/bin/bash
THISDIR="$(dirname "$0")"
PREV=""
if [[ -n $PYTHONPATH ]]; then
PREV=":$PYTHONPATH"
fi
export PYTHONPATH="$THISDIR$PREV"
exec "$@"