-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AppImages fail to run if appimaged process is running #827
Comments
In electron-builder script there is # Exit immediately if appimaged is running
pidof appimaged 2>/dev/null && exit 0 in the same place where original line placed. Probably this check should be move to the top of the script. Could please help understand what's wrong in electron-builder script? |
I suspect that the line you posted is correct: If Which means that the follwing block should be above any
Does that make sense? |
ping @develar |
If a process called
appimaged
is running, then desktop integration must not be shown. However this functionality seems to be broken and results in the AppImage not launch its app but sayingline 43: exec: : not found
instead.The original desktopintegration script does not show this behavior.
(In case you are wondering:
appimaged
is an optional daemon that watches the system for AppImages and integrates them with the system, video)The text was updated successfully, but these errors were encountered: