mirror of
https://github.com/Phantop/appdwarf.git
synced 2025-02-13 14:32:50 +00:00
Deprecates $APPDWARF_CMD for $ARGV0, as part of the standard Also finally removes the separate header, as it seems to not be needed anymore
5 lines
161 B
Bash
Executable file
5 lines
161 B
Bash
Executable file
#!/bin/sh
|
|
export PATH="${APPDIR}":"${APPDIR}"/bin:"$PATH"
|
|
export LD_LIBRARY_PATH="${APPDIR}"/lib64:"${APPDIR}"/lib:"$LD_LIBRARY_PATH"
|
|
exec "$APPDIR/$ARGV0" "$@"
|