10 lines
149 B
Bash
Executable file
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 "$@"
|