Skip to content

Commit e95cdf2

Browse files
authored
Merge pull request #101 from hashicorp/remove_vendor
Remove dependency vendoring
2 parents 82b28cb + 4a7f401 commit e95cdf2

File tree

2,050 files changed

+5
-690734
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,050 files changed

+5
-690734
lines changed

GNUmakefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
TEST?=$$(go list ./... |grep -v 'vendor')
2-
GOFMT_FILES?=$$(find . -name '*.go' |grep -v vendor)
1+
TEST?=$$(go list ./...)
2+
GOFMT_FILES?=$$(find . -name '*.go')
33
PKG_NAME=archive
44

55
default: build
@@ -17,7 +17,7 @@ testacc: fmtcheck
1717

1818
vet:
1919
@echo "go vet ."
20-
@go vet $$(go list ./... | grep -v vendor/) ; if [ $$? -eq 1 ]; then \
20+
@go vet $$(go list ./...) ; if [ $$? -eq 1 ]; then \
2121
echo ""; \
2222
echo "Vet found suspicious constructs. Please check the reported constructs"; \
2323
echo "and fix them if necessary before submitting the code for review."; \

scripts/errcheck.sh

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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}"

vendor/cloud.google.com/go/.gitignore

Lines changed: 0 additions & 11 deletions
This file was deleted.

0 commit comments

Comments
 (0)