appdwarf/AppRun
Phantop 95be3a7d5d GitHub and AppImageHub support, fix environment variables
removes the apps/appimage script that did this. should function identically

replaces version numbering with dates because incrementing is a nightmare
2022-06-25 22:05:01 -04:00

5 lines
163 B
Bash
Executable file

#!/bin/sh
export PATH="${APPDIR}"/bin:"$PATH"
export LD_LIBRARY_PATH="${APPDIR}"/lib64:"${APPDIR}"/lib:"$LD_LIBRARY_PATH"
exec "$APPDIR/$(basename "$ARGV0")" "$@"