mirror of
https://github.com/Phantop/appdwarf.git
synced 2024-11-14 02:42:51 +00:00
5 lines
149 B
Bash
Executable file
5 lines
149 B
Bash
Executable file
#!/bin/sh
|
|
export PATH="${APPDIR}"/bin:"$PATH"
|
|
export LD_LIBRARY_PATH="${APPDIR}"/lib64:"${APPDIR}"/lib:"$LD_LIBRARY_PATH"
|
|
exec "$APPDIR/$ARGV0" "$@"
|