pesterchum/pesterchum
2022-03-20 04:37:04 +01:00

14 lines
251 B
Bash
Executable file

#!/bin/sh
# Run pesterchum either locally or when installed as library/module.
# If installed as library/module can be excecuted from anywhere.
#echo $@
if [ -f "pesterchum.py" ];
then
python3 pesterchum.py $@
else
python3 -m pesterchum_alt $@
fi