Files
growstuff/script/install_codeclimate.sh
2018-03-19 17:47:01 +13:00

8 lines
205 B
Bash
Executable File

#!/bin/bash
set -euv
if [ "${COVERAGE}" = "true" ]; then
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter;
chmod +x ./cc-test-reporter;
fi