summarylogtreecommitdiffstats
path: root/vgmtrans.sh
blob: c8bf0bfe5d1c6c58d2a7814d51326eaf272f87f1 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/bash
set -e
_APPDIR=/opt/@appname@
_RUNNAME="${_APPDIR}/bin/@runname@"
export PATH="${_APPDIR}/bin:${PATH}"
export LD_LIBRARY_PATH="${_APPDIR}/lib:${LD_LIBRARY_PATH}"
export QT_PLUGIN_PATH="${_APPDIR}/plugins:${QT_PLUGIN_PATH}"
cd "${_APPDIR}"
exec "${_RUNNAME}" "$@" || exit $?