mirror of
https://github.com/hiddify/hiddify-next.git
synced 2026-06-20 21:12:02 +08:00
10 lines
147 B
Bash
10 lines
147 B
Bash
#!/bin/bash
|
|
|
|
cd "\$(dirname "\$0")"
|
|
export LD_LIBRARY_PATH=usr/lib
|
|
if [ $1 == "HiddifyService" ];then
|
|
exec ./$@
|
|
else
|
|
exec ./$appName $@
|
|
fi
|