summarylogtreecommitdiffstats
path: root/secret-diary.sh
blob: 8c3bc7d4fc8ad834cf1f2a7266cb4ef2634144b0 (plain)
1
2
3
4
5
6
7
#!/bin/sh
set -e
_APPDIR=/opt/@appname@
_RUNNAME="${_APPDIR}/@runname@"
export PATH="${_APPDIR}:${PATH}"
cd "${_APPDIR}"
exec "${_RUNNAME}" "$@" || exit $?