hiddify-next
hiddify-next copied to clipboard
AppImage doesn' t start
Search first
- [X] I searched and no similar issues were found
What Happened?
The AppImage doesn't open.
Reproduce the Bug
- Download AppImage
- Move it to my portable apps' folder.
- Try to start it.
Expected Behavior
No response
Version
v.0.16.0 dev
Platform/OS
Linux Manjaro KDE, unstable
Additional Context
v. 0.14.20 is working well
Relevant log output
/tmp/.mount_hiddifqxOUU7/AppRun: string 3: cd: $(dirname $0): No such file or directory
/tmp/.mount_hiddifqxOUU7/AppRun: string 8: /home/user/: It's a directory
/tmp/.mount_hiddifqxOUU7/AppRun: string 8: exec: /home/user/: can't start: It's a directory
Hi, I think the problem is these lines in the AppRun file:
2 cd "\$(dirname "\$0")"
7 exec ./$appName $@
these changes should be made for AppRun 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
Hi, I'm back again, the appimage bug is fixed in version 0.16.4.dev, please consider label the issue as solved if that error doesn't persist.
I also confirm it. The bug is fixed. (0.16.7dev)
0.16.16dev - We encountered this issue again in this version. The problem persists.
tmp/.mount_hiddifUw0JYW/AppRun: string 28: exec: hiddify: not found
fixed