summarylogtreecommitdiffstats
path: root/spotiflyer.sh
blob: 8a9c156e24b764c62d323b3b9518fc5f8537b64b (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}/bin:${PATH}"
export LD_LIBRARY_PATH="${_APPDIR}/lib/runtime/lib:${LD_LIBRARY_PATH}"
cd "${_APPDIR}"
exec "${_RUNNAME}" "$@" || exit $?