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