1
0
mirror of https://github.com/node-red/node-red-nodes.git synced 2023-10-10 13:36:58 +02:00

15 lines
177 B
Plaintext
Raw Normal View History

2016-03-01 23:21:44 +00:00
#!/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 $@