mirror of
https://github.com/node-red/node-red-nodes.git
synced 2025-03-01 10:37:43 +00:00
Fixup sensehat to not use sudo if not needed
This commit is contained in:
@@ -1,4 +1,14 @@
|
||||
#!/bin/bash
|
||||
|
||||
BASEDIR=$(dirname $0)
|
||||
sudo python -u $BASEDIR/sensehat.py $@
|
||||
|
||||
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 $@
|
||||
|
Reference in New Issue
Block a user