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

15 lines
177 B
Plaintext
Raw Normal View History

2016-03-02 00:21:44 +01: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 $@