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
2018-09-26 16:06:16 +01:00

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