mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-01-13 11:57:50 -05:00
8 lines
207 B
Bash
Executable File
8 lines
207 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ "${COVERAGE}" = "true" ]; then
|
|
set -euv
|
|
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter;
|
|
chmod +x ./cc-test-reporter;
|
|
fi
|