fix python2 fallback check (#892)

This commit is contained in:
Mike Harsch
2022-03-11 10:49:55 -07:00
committed by GitHub
parent dbd7004ae5
commit f6eae7b905
19 changed files with 22 additions and 22 deletions

View File

@@ -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 $@

View File

@@ -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" : {
},

View File

@@ -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 $@