Skip to content

Commit f61dce0

Browse files
more vendor deletions
1 parent c98e4fa commit f61dce0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

scripts/errcheck.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ err_files=$(errcheck -ignoretests \
1212
-ignore 'github.com/hashicorp/terraform/helper/schema:Set' \
1313
-ignore 'bytes:.*' \
1414
-ignore 'io:Close|Write' \
15-
$(go list ./...| grep -v /vendor/))
15+
$(go list ./...))
1616

1717
if [[ -n ${err_files} ]]; then
1818
echo 'Unchecked errors found in the following places:'

scripts/gofmtcheck.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Check gofmt
44
echo "==> Checking that code complies with gofmt requirements..."
5-
gofmt_files=$(gofmt -l `find . -name '*.go' | grep -v vendor`)
5+
gofmt_files=$(gofmt -l `find . -name '*.go'`)
66
if [[ -n ${gofmt_files} ]]; then
77
echo 'gofmt needs running on the following files:'
88
echo "${gofmt_files}"

0 commit comments

Comments
 (0)