imfreedom/k8s-cluster

half the trac postgress resources

13 months ago, Gary Kramlich
ad04756f6ef2
file isExecutable
half the trac postgress resources

Trac hasn't had any issues with stability since we redirected all of the issues,
so lowering this shouldn't be a big deal.
#!/bin/sh
POPEYE=$(which popeye)
if [ -z "${POPEYE}" ] ; then
echo "failed to find popeye executable, please make sure it's on your path" >&2
echo "or download it from https://github.com/derailed/popeye" >&2
exit 1
fi
mkdir -p reports
POPEYE_REPORT_DIR=$(pwd)/reports "${POPEYE}" --save --out html ${@}
exit ${?}