imfreedom/k8s-cluster

Lower the resources for trac

13 months ago, Gary Kramlich
5e0f351f8ee3
file isExecutable
Lower the resources for trac

We haven't had any stability issues with trac since we redirected the issues,
so we're going to lower the resources to reflect that and hopefully bring them
down a bit more over time.
#!/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 ${?}