summarylogtreecommitdiffstats
path: root/deeplink-launcher.sh
blob: 6ef41b0d1a6cee5247d6e11ea08d399ec1958ed0 (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}:${PATH}"
export LD_LIBRARY_PATH="${_APPDIR}/lib/runtime/lib:${LD_LIBRARY_PATH}"
cd "${_APPDIR}" || { echo "Failed to change directory to ${_APPDIR}"; exit 1; }
exec "${_RUNNAME}" "$@" || exit $?