mirror of
https://github.com/node-red/node-red-nodes.git
synced 2025-03-01 10:37:43 +00:00
add python 3 tests to most shell scripts
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name" : "node-red-node-pi-unicorn-hat",
|
||||
"version" : "0.0.22",
|
||||
"version" : "0.0.23",
|
||||
"description" : "A Node-RED node to output to a Raspberry Pi Unicorn HAT from Pimorini.",
|
||||
"dependencies" : {
|
||||
"pngjs": "2.2.*"
|
||||
|
@@ -1,4 +1,8 @@
|
||||
#!/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)
|
||||
sudo python -u $BASEDIR/unihat.py $@
|
||||
sudo $python_cmd -u $BASEDIR/unihat.py $@
|
||||
|
Reference in New Issue
Block a user