mirror of https://github.com/VinGarcia/ksql.git
Update Makefile to use go install instead of the old go get
parent
73952d0e03
commit
3577f0674c
5
Makefile
5
Makefile
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue