mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-02-25 18:53:56 +08:00
13 lines
251 B
Bash
Executable File
13 lines
251 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ -f /EON ]; then
|
|
export LD_LIBRARY_PATH="/system/lib64:$LD_LIBRARY_PATH"
|
|
exec ./android/spinner/spinner "$1"
|
|
else
|
|
if [ -f /TICI ] && [ ! -f qt/spinner ]; then
|
|
cp qt/spinner_aarch64 qt/spinner
|
|
fi
|
|
|
|
exec ./qt/spinner "$1"
|
|
fi
|