Skip to content

Commit

Permalink
Makefile: enable module support in deps (#4062)
Browse files Browse the repository at this point in the history
  • Loading branch information
easwars authored Nov 25, 2020
1 parent 53c8623 commit 44e408d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ clean:
go clean -i google.golang.org/grpc/...

deps:
go get -d -v google.golang.org/grpc/...
GO111MODULE=on go get -d -v google.golang.org/grpc/...

proto:
@ if ! which protoc > /dev/null; then \
Expand All @@ -27,7 +27,7 @@ testrace:
go test -race -cpu 1,4 -timeout 7m google.golang.org/grpc/...

testdeps:
go get -d -v -t google.golang.org/grpc/...
GO111MODULE=on go get -d -v -t google.golang.org/grpc/...

vet: vetdeps
./vet.sh
Expand Down

0 comments on commit 44e408d

Please sign in to comment.