]>
Commit | Line | Data |
---|---|---|
8904b9d0 J |
1 | #!/usr/bin/env bash |
2 | ||
3 | # Check gofmt | |
4 | echo "==> Checking for unchecked errors..." | |
5 | ||
6 | if ! which errcheck > /dev/null; then | |
7 | echo "==> Installing errcheck..." | |
8 | go get -u github.com/kisielk/errcheck | |
9 | fi | |
10 | ||
11 | err_files=$(errcheck -ignoretests \ | |
12 | -ignore 'github.com/hashicorp/terraform/helper/schema:Set' \ | |
13 | -ignore 'bytes:.*' \ | |
14 | -ignore 'io:Close|Write' \ | |
15 | $(go list ./...| grep -v /vendor/)) | |
16 | ||
17 | if [[ -n ${err_files} ]]; then | |
18 | echo 'Unchecked errors found in the following places:' | |
19 | echo "${err_files}" | |
20 | echo "Please handle returned errors. You can check directly with \`make errcheck\`" | |
21 | exit 1 | |
22 | fi | |
23 | ||
24 | exit 0 |