summarylogtreecommitdiffstats
path: root/tfiletransfer.sh
blob: 8e729c262ced6c1a7208205ee049146dc615f43f (plain)
1
2
3
4
5
6
7
8
#!/bin/bash
set -o pipefail
_APPDIR=/usr/lib/@appname@
_RUNNAME="${_APPDIR}/bin/@runname@"
export PATH="${_APPDIR}:${_APPDIR}/bin:${PATH}"
export LD_LIBRARY_PATH="${_APPDIR}/lib:${LD_LIBRARY_PATH}"
cd "${_APPDIR}"
exec "${_RUNNAME}" "$@" || exit $?