Skip to content

Commit

Permalink
fix python2 fallback check (#892)
Browse files Browse the repository at this point in the history
  • Loading branch information
mharsch authored Mar 11, 2022
1 parent dbd7004 commit f6eae7b
Show file tree
Hide file tree
Showing 19 changed files with 22 additions and 22 deletions.
2 changes: 1 addition & 1 deletion hardware/LEDborg/nrgpio
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
python_cmd='python3'
# Fallback to Python 2, if Python 3 is not available
command -v python3 > /dev/null || python_cmd=`python`
command -v python3 > /dev/null || python_cmd='python'

BASEDIR=$(dirname $0)
sudo $python_cmd -u $BASEDIR/nrgpio.py $@
2 changes: 1 addition & 1 deletion hardware/LEDborg/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name" : "node-red-node-ledborg",
"version" : "0.0.23",
"version" : "0.0.24",
"description" : "A Node-RED node to control a PiBorg LedBorg board for a Raspberry Pi.",
"dependencies" : {
},
Expand Down
2 changes: 1 addition & 1 deletion hardware/PiGpio/nrgpio
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

python_cmd='python3'
# Fallback to Python 2, if Python 3 is not available
command -v python3 > /dev/null || python_cmd=`python`
command -v python3 > /dev/null || python_cmd='python'

BASEDIR=$(dirname $0)
$python_cmd -u $BASEDIR/nrgpio.py $@
2 changes: 1 addition & 1 deletion hardware/PiGpio/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "node-red-node-pi-gpio",
"version": "2.0.1",
"version": "2.0.2",
"description": "The basic Node-RED node for Pi GPIO",
"dependencies" : {
},
Expand Down
2 changes: 1 addition & 1 deletion hardware/PiGpio/testgpio
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

python_cmd='python3'
# Fallback to Python 2, if Python 3 is not available
command -v python3 > /dev/null || python_cmd=`python`
command -v python3 > /dev/null || python_cmd='python'

BASEDIR=$(dirname $0)
$python_cmd -u $BASEDIR/testgpio.py $@
2 changes: 1 addition & 1 deletion hardware/PiLcd/nrlcd
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
python_cmd='python3'
# Fallback to Python 2, if Python 3 is not available
command -v python3 > /dev/null || python_cmd=`python`
command -v python3 > /dev/null || python_cmd='python'

BASEDIR=$(dirname $0)
sudo $python_cmd -u $BASEDIR/nrlcd.py $@
2 changes: 1 addition & 1 deletion hardware/PiLcd/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name" : "node-red-node-pilcd",
"version" : "0.3.0",
"version" : "0.3.1",
"description" : "A Node-RED node for Raspberry Pi to write to HD44780 style LCD panels.",
"dependencies" : {
},
Expand Down
4 changes: 2 additions & 2 deletions hardware/PiLiter/nrgpio
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
python_cmd='python3'
# Fallback to Python 2, if Python 3 is not available
command -v python3 > /dev/null || python_cmd=`python`
command -v python3 > /dev/null || python_cmd='python'

BASEDIR=$(dirname $0)
sudo $python_cmd -u $BASEDIR/nrgpio.py $@
sudo $python_cmd -u $BASEDIR/nrgpio.py $@
2 changes: 1 addition & 1 deletion hardware/PiLiter/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name" : "node-red-node-piliter",
"version" : "0.0.16",
"version" : "0.0.17",
"description" : "A Node-RED node to drive a Raspberry Pi Pi-LITEr 8 LED board.",
"dependencies" : {
},
Expand Down
4 changes: 2 additions & 2 deletions hardware/PiSrf/nrsrf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
python_cmd='python3'
# Fallback to Python 2, if Python 3 is not available
command -v python3 > /dev/null || python_cmd=`python`
command -v python3 > /dev/null || python_cmd='python'

BASEDIR=$(dirname $0)
exec $python_cmd -u $BASEDIR/nrsrf.py $@
exec $python_cmd -u $BASEDIR/nrsrf.py $@
2 changes: 1 addition & 1 deletion hardware/PiSrf/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name" : "node-red-node-pisrf",
"version" : "0.2.0",
"version" : "0.2.1",
"description" : "A Node-RED node for a Raspberry Pi to use a SRF04 or SRF05 range finder",
"dependencies" : {
},
Expand Down
4 changes: 2 additions & 2 deletions hardware/Pibrella/nrgpio
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
python_cmd='python3'
# Fallback to Python 2, if Python 3 is not available
command -v python3 > /dev/null || python_cmd=`python`
command -v python3 > /dev/null || python_cmd='python'

BASEDIR=$(dirname $0)
sudo $python_cmd -u $BASEDIR/nrgpio.py $@
sudo $python_cmd -u $BASEDIR/nrgpio.py $@
2 changes: 1 addition & 1 deletion hardware/Pibrella/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name" : "node-red-node-pibrella",
"version" : "0.0.16",
"version" : "0.0.17",
"description" : "A Node-RED node to read from and write to a Pibrella Raspberry Pi add-on board",
"dependencies" : {
},
Expand Down
2 changes: 1 addition & 1 deletion hardware/neopixel/neopix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
python_cmd='python3'
# Fallback to Python 2, if Python 3 is not available
command -v python3 > /dev/null || python_cmd=`python`
command -v python3 > /dev/null || python_cmd='python'

BASEDIR=$(dirname $0)
if [ "$1" == "check" ];then
Expand Down
2 changes: 1 addition & 1 deletion hardware/neopixel/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name" : "node-red-node-pi-neopixel",
"version" : "2.0.0",
"version" : "2.0.1",
"description" : "A Node-RED node to output to a neopixel (ws2812) string of LEDS from a Raspberry Pi.",
"dependencies" : {
},
Expand Down
2 changes: 1 addition & 1 deletion hardware/sensehat/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name" : "node-red-node-pi-sense-hat",
"version" : "0.1.1",
"version" : "0.1.2",
"description" : "A Node-RED node to interact with a Raspberry Pi Sense HAT",
"repository" : {
"type":"git",
Expand Down
2 changes: 1 addition & 1 deletion hardware/sensehat/sensehat
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

python_cmd='python3'
# Fallback to Python 2, if Python 3 is not available
command -v python3 > /dev/null || python_cmd=`python`
command -v python3 > /dev/null || python_cmd='python'

BASEDIR=$(dirname $0)

Expand Down
2 changes: 1 addition & 1 deletion hardware/unicorn/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name" : "node-red-node-pi-unicorn-hat",
"version" : "0.1.0",
"version" : "0.1.1",
"description" : "A Node-RED node to output to a Raspberry Pi Unicorn HAT from Pimorini.",
"dependencies" : {
"pngjs": "2.2.*"
Expand Down
2 changes: 1 addition & 1 deletion hardware/unicorn/unihat
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

python_cmd='python3'
# Fallback to Python 2, if Python 3 is not available
command -v python3 > /dev/null || python_cmd=`python`
command -v python3 > /dev/null || python_cmd='python'

BASEDIR=$(dirname $0)
sudo $python_cmd -u $BASEDIR/unihat.py $@

0 comments on commit f6eae7b

Please sign in to comment.