diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2014-09-10 17:05:51 +0200 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2014-09-10 17:11:37 +0200 |
| commit | 45ee6b4e2cd55b901770578e6915312e7792edae (patch) | |
| tree | 01ee3c661f2c9be67e1ac92628740423c1581f0d /boot/boot.sh | |
| parent | 4bb5053efde9f40acc9be3033c517bf391e01eca (diff) | |
| download | jasper-client-45ee6b4e2cd55b901770578e6915312e7792edae.tar.gz jasper-client-45ee6b4e2cd55b901770578e6915312e7792edae.zip | |
Ported boot/boot.sh to python
Diffstat (limited to 'boot/boot.sh')
| -rwxr-xr-x | boot/boot.sh | 19 |
1 files changed, 3 insertions, 16 deletions
diff --git a/boot/boot.sh b/boot/boot.sh index e712c0d..f57da14 100755 --- a/boot/boot.sh +++ b/boot/boot.sh @@ -1,17 +1,4 @@ #!/bin/bash -if [[ -z "$JASPER_HOME" ]]; then - if [[ -d "/home/pi" ]]; then - JASPER_HOME="/home/pi" - export JASPER_HOME; - else - echo "Error: \$JASPER_HOME is not set." - exit 0; - fi -fi - -cd $JASPER_HOME/jasper/boot -LD_LIBRARY_PATH="/usr/local/lib" -export LD_LIBRARY_PATH -PATH=$PATH:/usr/local/lib/ -export PATH -python boot.py & +# This file exists for backwards compatibility with older versions of jasper. +# It might be removed in future versions. +"${0%/*}/boot.py" |
