Merge pull request #556 from Aryangh1379/Hiddify-develop

AppRun file error fixed. AppImage now is usable
This commit is contained in:
Hiddify
2024-02-23 02:52:15 +03:30
committed by GitHub

View File

@@ -1,9 +1,9 @@
#!/bin/bash #!/bin/bash
cd "\$(dirname "\$0")" cd "$(dirname "$0")"
export LD_LIBRARY_PATH=usr/lib export LD_LIBRARY_PATH=usr/lib
if [ "$1" == "HiddifyService" ];then if [ "$1" == "HiddifyService" ];then
exec ./$@ exec ./$@
else else
exec ./$appName $@ exec ./hiddify $@
fi fi