Update Makefile to use go install instead of the old go get

pull/24/head
Vinícius Garcia 2022-07-06 20:09:50 -03:00
parent 73952d0e03
commit 3577f0674c
1 changed files with 2 additions and 3 deletions

View File

@ -36,15 +36,14 @@ mock: setup
setup: $(GOBIN)/richgo $(GOBIN)/staticcheck $(GOBIN)/mockgen
$(GOBIN)/richgo:
go get github.com/kyoh86/richgo
go install github.com/kyoh86/richgo@latest
$(GOBIN)/staticcheck:
go install honnef.co/go/tools/cmd/staticcheck@latest
$(GOBIN)/mockgen:
@# (Gomock is used on examples/example_service)
go get github.com/golang/mock/gomock
go get github.com/golang/mock/mockgen
go install github.com/golang/mock/mockgen@latest
# Running examples:
exampleservice: mock