mirror of
https://github.com/node-red/node-red-nodes.git
synced 2025-03-01 10:37:43 +00:00
fix python2 fallback check (#892)
This commit is contained in:
@@ -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",
|
||||
|
||||
@@ -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)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user