node-red-nodes/hardware/PiGpio/nrgpio

9 lines
201 B
Plaintext
Raw Normal View History

2019-05-20 20:35:05 +02:00
#!/bin/bash
python_cmd='python3'
# Fallback to Python 2, if Python 3 is not available
command -v python3 > /dev/null || python_cmd=`python`
2019-05-20 20:35:05 +02:00
BASEDIR=$(dirname $0)
$python_cmd -u $BASEDIR/nrgpio.py $@