mirror of
https://github.com/node-red/node-red-nodes.git
synced 2023-10-10 13:36:58 +02:00
15 lines
177 B
Bash
Executable File
15 lines
177 B
Bash
Executable File
#!/bin/bash
|
|
|
|
BASEDIR=$(dirname $0)
|
|
|
|
ID=$(id -u)
|
|
|
|
# Avoid using sudo if we're already root
|
|
SUDO=sudo
|
|
if [ $ID -eq 0 ]
|
|
then
|
|
SUDO=""
|
|
fi
|
|
|
|
$SUDO python -u $BASEDIR/sensehat.py $@
|