mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-03-02 08:33:55 +08:00
11 lines
220 B
Plaintext
11 lines
220 B
Plaintext
|
|
#!/usr/bin/env bash
|
||
|
|
|
||
|
|
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null && pwd)"
|
||
|
|
cd "$DIR/../../"
|
||
|
|
|
||
|
|
if [ -f "$DIR/libthneed.so" ]; then
|
||
|
|
export LD_PRELOAD="$DIR/libthneed.so"
|
||
|
|
fi
|
||
|
|
|
||
|
|
exec "$DIR/dmonitoringmodeld.py" "$@"
|