imfreedom/k8s-cluster

Add a deployment for lists.pidgin.im

16 months ago, Gary Kramlich
58df72dc379a
file isExecutable
Add a deployment for lists.pidgin.im

Currently this is just running on liststest.pidgin.im until we are ready to
migrate production.
#!/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 ${?}