You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Looks like the following code in your AppRun script
APP=$(echo "$DESKTOP_FILE_NAME" | sed -e 's/.desktop//g')
BIN="$APPDIR/usr/bin/$APP"
isn't working when run from the AppDir rather than the AppImage because in this case the variable $APPDIR is not set. However, it is safe to assume that $APPDIR is the directory in which AppRun is located. Hence, please determine The variable $APPDIR by something like
APPDIR=$(dirname $(readlink -f "${0}"))
Let me know if you want me to send a PR.
The text was updated successfully, but these errors were encountered:
develar
changed the title
AppImage oes not run when invoked in unpacked form
AppImage does not run when invoked in unpacked form
Aug 2, 2016
Looks like the following code in your
AppRun
scriptisn't working when run from the AppDir rather than the AppImage because in this case the variable
$APPDIR
is not set. However, it is safe to assume that$APPDIR
is the directory in whichAppRun
is located. Hence, please determine The variable$APPDIR
by something likeLet me know if you want me to send a PR.
The text was updated successfully, but these errors were encountered: