mirror of
https://github.com/node-red/node-red-nodes.git
synced 2023-10-10 13:36:58 +02:00
add python 3 tests to most shell scripts
This commit is contained in:
parent
93f6517d30
commit
2bd98c6887
@ -1,4 +1,7 @@
|
|||||||
#!/bin/bash
|
#!/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)
|
BASEDIR=$(dirname $0)
|
||||||
sudo python -u $BASEDIR/nrgpio.py $@
|
sudo $python_cmd -u $BASEDIR/nrgpio.py $@
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name" : "node-red-node-ledborg",
|
"name" : "node-red-node-ledborg",
|
||||||
"version" : "0.0.22",
|
"version" : "0.0.23",
|
||||||
"description" : "A Node-RED node to control a PiBorg LedBorg board for a Raspberry Pi.",
|
"description" : "A Node-RED node to control a PiBorg LedBorg board for a Raspberry Pi.",
|
||||||
"dependencies" : {
|
"dependencies" : {
|
||||||
},
|
},
|
||||||
|
@ -13,5 +13,9 @@
|
|||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
#
|
#
|
||||||
|
|
||||||
|
python_cmd='python3'
|
||||||
|
# Fallback to Python 2, if Python 3 is not available
|
||||||
|
command -v python3 > /dev/null || python_cmd=`python`
|
||||||
|
|
||||||
BASEDIR=$(dirname $0)
|
BASEDIR=$(dirname $0)
|
||||||
python -u $BASEDIR/nrgpio.py $@
|
$python_cmd -u $BASEDIR/nrgpio.py $@
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "node-red-node-pi-gpio",
|
"name": "node-red-node-pi-gpio",
|
||||||
"version": "2.0.0-beta2",
|
"version": "2.0.0-beta3",
|
||||||
"description": "The basic Node-RED node for Pi GPIO",
|
"description": "The basic Node-RED node for Pi GPIO",
|
||||||
"dependencies" : {
|
"dependencies" : {
|
||||||
},
|
},
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
#!/bin/bash
|
#!/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)
|
BASEDIR=$(dirname $0)
|
||||||
sudo python -u $BASEDIR/nrlcd.py $@
|
sudo $python_cmd -u $BASEDIR/nrlcd.py $@
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name" : "node-red-node-pilcd",
|
"name" : "node-red-node-pilcd",
|
||||||
"version" : "0.2.0",
|
"version" : "0.2.1",
|
||||||
"description" : "A Node-RED node for Raspberry Pi to write to HD44780 style LCD panels.",
|
"description" : "A Node-RED node for Raspberry Pi to write to HD44780 style LCD panels.",
|
||||||
"dependencies" : {
|
"dependencies" : {
|
||||||
},
|
},
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
#!/bin/bash
|
#!/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)
|
BASEDIR=$(dirname $0)
|
||||||
sudo python -u $BASEDIR/nrgpio.py $@
|
sudo $python_cmd -u $BASEDIR/nrgpio.py $@
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name" : "node-red-node-piliter",
|
"name" : "node-red-node-piliter",
|
||||||
"version" : "0.0.14",
|
"version" : "0.0.15",
|
||||||
"description" : "A Node-RED node to drive a Raspberry Pi Pi-LITEr 8 LED board.",
|
"description" : "A Node-RED node to drive a Raspberry Pi Pi-LITEr 8 LED board.",
|
||||||
"dependencies" : {
|
"dependencies" : {
|
||||||
},
|
},
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
#!/bin/bash
|
#!/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)
|
BASEDIR=$(dirname $0)
|
||||||
sudo python -u $BASEDIR/nrsrf.py $@
|
sudo $python_cmd -u $BASEDIR/nrsrf.py $@
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name" : "node-red-node-pisrf",
|
"name" : "node-red-node-pisrf",
|
||||||
"version" : "0.1.4",
|
"version" : "0.1.5",
|
||||||
"description" : "A Node-RED node for a Raspberry Pi to use a SRF04 or SRF05 range finder",
|
"description" : "A Node-RED node for a Raspberry Pi to use a SRF04 or SRF05 range finder",
|
||||||
"dependencies" : {
|
"dependencies" : {
|
||||||
},
|
},
|
||||||
|
@ -1,4 +1,7 @@
|
|||||||
#!/bin/bash
|
#!/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)
|
BASEDIR=$(dirname $0)
|
||||||
sudo python -u $BASEDIR/nrgpio.py $@
|
sudo $python_cmd -u $BASEDIR/nrgpio.py $@
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name" : "node-red-node-pibrella",
|
"name" : "node-red-node-pibrella",
|
||||||
"version" : "0.0.15",
|
"version" : "0.0.16",
|
||||||
"description" : "A Node-RED node to read from and write to a Pibrella Raspberry Pi add-on board",
|
"description" : "A Node-RED node to read from and write to a Pibrella Raspberry Pi add-on board",
|
||||||
"dependencies" : {
|
"dependencies" : {
|
||||||
},
|
},
|
||||||
|
@ -1,4 +1,7 @@
|
|||||||
#!/bin/bash
|
#!/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)
|
BASEDIR=$(dirname $0)
|
||||||
sudo python -u $BASEDIR/neopix.py $@
|
sudo $python_cmd -u $BASEDIR/neopix.py $@
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name" : "node-red-node-pi-neopixel",
|
"name" : "node-red-node-pi-neopixel",
|
||||||
"version" : "0.1.1",
|
"version" : "0.1.2",
|
||||||
"description" : "A Node-RED node to output to a neopixel (ws2812) string of LEDS from a Raspberry Pi.",
|
"description" : "A Node-RED node to output to a neopixel (ws2812) string of LEDS from a Raspberry Pi.",
|
||||||
"dependencies" : {
|
"dependencies" : {
|
||||||
},
|
},
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name" : "node-red-node-pi-sense-hat",
|
"name" : "node-red-node-pi-sense-hat",
|
||||||
"version" : "0.1.0",
|
"version" : "0.1.1",
|
||||||
"description" : "A Node-RED node to interact with a Raspberry Pi Sense HAT",
|
"description" : "A Node-RED node to interact with a Raspberry Pi Sense HAT",
|
||||||
"repository" : {
|
"repository" : {
|
||||||
"type":"git",
|
"type":"git",
|
||||||
|
@ -1,5 +1,9 @@
|
|||||||
#!/bin/bash
|
#!/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)
|
BASEDIR=$(dirname $0)
|
||||||
|
|
||||||
ID=$(id -u)
|
ID=$(id -u)
|
||||||
@ -11,4 +15,4 @@ then
|
|||||||
SUDO=""
|
SUDO=""
|
||||||
fi
|
fi
|
||||||
|
|
||||||
$SUDO python -u $BASEDIR/sensehat.py $@
|
$SUDO $python_cmd -u $BASEDIR/sensehat.py $@
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name" : "node-red-node-pi-unicorn-hat",
|
"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.",
|
"description" : "A Node-RED node to output to a Raspberry Pi Unicorn HAT from Pimorini.",
|
||||||
"dependencies" : {
|
"dependencies" : {
|
||||||
"pngjs": "2.2.*"
|
"pngjs": "2.2.*"
|
||||||
|
@ -1,4 +1,8 @@
|
|||||||
#!/bin/bash
|
#!/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)
|
BASEDIR=$(dirname $0)
|
||||||
sudo python -u $BASEDIR/unihat.py $@
|
sudo $python_cmd -u $BASEDIR/unihat.py $@
|
||||||
|
Loading…
Reference in New Issue
Block a user