mirror of
https://github.com/node-red/node-red-nodes.git
synced 2023-10-10 13:36:58 +02:00
12 lines
278 B
Bash
Executable File
12 lines
278 B
Bash
Executable File
#!/bin/bash
|
|
python_cmd='python3'
|
|
# Fallback to Python 2, if Python 3 is not available
|
|
command -v python3 > /dev/null || python_cmd='python'
|
|
|
|
BASEDIR=$(dirname $0)
|
|
if [ "$1" == "check" ];then
|
|
$python_cmd -c "import rpi_ws281x"
|
|
else
|
|
sudo $python_cmd -u $BASEDIR/neopix.py $@
|
|
fi
|