Skip to content

Commit

Permalink
Makefile: Restore deps and testdeps (#4060)
Browse files Browse the repository at this point in the history
  • Loading branch information
easwars authored Nov 24, 2020
1 parent a82c291 commit 53c8623
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ build:
clean:
go clean -i google.golang.org/grpc/...

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

proto:
@ if ! which protoc > /dev/null; then \
echo "error: protoc not installed" >&2; \
Expand All @@ -23,6 +26,9 @@ testsubmodule:
testrace:
go test -race -cpu 1,4 -timeout 7m google.golang.org/grpc/...

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

vet: vetdeps
./vet.sh

Expand Down

0 comments on commit 53c8623

Please sign in to comment.