AppRun file error fixed. AppImage now is usable

This commit is contained in:
Aryan Ghasemi
2024-02-23 00:46:12 +03:30
parent 4bd268e392
commit 2b795255b1

View File

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