mirror of
				https://github.com/node-red/node-red-nodes.git
				synced 2025-03-01 10:37:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			311 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			311 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| python_cmd='python3'
 | |
| # Fallback to Python 2, if Python 3 is not available
 | |
| command -v python3 > /dev/null || python_cmd='python'
 | |
| 
 | |
| 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_cmd -u $BASEDIR/sensehat.py $@
 |