imfreedom/k8s-cluster

Add the deployment for lists.imfreedom.org.

16 months ago, Gary Kramlich
22ca0a0280d4
file isExecutable
Add the deployment for lists.imfreedom.org.

This is currently running at liststest.imfreedom.org until we are actually ready
to migrate the production stuff.
#!/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 ${?}