7 lines
117 B
Text
7 lines
117 B
Text
|
#!/bin/sh
|
||
|
|
||
|
here="$(dirname $0)"
|
||
|
this="$(basename $0)"
|
||
|
. ${here}/.venv/bin/activate
|
||
|
exec python ${here}/${this}.py $@
|