mirror of
https://github.com/Phantop/appdwarf.git
synced 2024-10-31 20:14:27 +00:00
Phantop
3ebee5f254
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" "$@"
|