HTF-0.13.2.1: scripts/local-htfpp
#!/bin/bash
TOP=$(cd $(dirname ${BASH_SOURCE[0]})/.. > /dev/null && pwd -P)
d=$(stack $HTF_TRAVIS_STACK_ARGS path --dist-dir)
bin="$TOP/$d/build/htfpp/htfpp"
if [ ! -x "$bin" ]; then
echo "No executable found at $bin" >&2
exit 1
fi
"$bin" "$@"