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