File tree Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -42,18 +42,18 @@ install-dependencies:
4242
4343install-tools :
4444 # generation
45- go get golang.org/x/tools/cmd/stringer
45+ go install golang.org/x/tools/cmd/stringer
4646
4747 # linting
48- go get golang.org/x/lint/golint/...
49- go get github.com/kisielk/errcheck/...
50- go get honnef.co/go/tools/...
48+ go install golang.org/x/lint/golint/...
49+ go install github.com/kisielk/errcheck/...
50+ go install honnef.co/go/tools/...
5151
5252 # code coverage
53- go get golang.org/x/tools/cmd/cover
54- go get github.com/onsi/ginkgo/ginkgo/...
55- go get github.com/modocache/gover/...
56- go get github.com/mattn/goveralls/...
53+ go install golang.org/x/tools/cmd/cover
54+ go install github.com/onsi/ginkgo/ginkgo/...
55+ go install github.com/modocache/gover/...
56+ go install github.com/mattn/goveralls/...
5757.PHONY : install-tools
5858
5959lint :
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ Mutation testing is also especially interesting for comparing automatically gene
6767go-mutesting includes a binary which is go-getable.
6868
6969``` bash
70- go get -t -v github.com/zimmski/go-mutesting/...
70+ go install github.com/zimmski/go-mutesting/cmd/go-mutesting@latest
7171```
7272
7373The binary's help can be invoked by executing the binary without arguments or with the ` --help ` argument.
You can’t perform that action at this time.
0 commit comments