mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-07-15 22:32:11 +08:00
11 lines
217 B
Bash
Executable File
11 lines
217 B
Bash
Executable File
#!/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/classic_modeld.py" "$@"
|