pesterchum/pesterchum

14 lines
251 B
Text
Raw Normal View History

2022-03-19 23:37:04 -04:00
#!/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