Skip to content

Commit

Permalink
Replace deprecated get with install command
Browse files Browse the repository at this point in the history
  • Loading branch information
Felixoid committed Aug 15, 2021
1 parent 9981568 commit 333bd36
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -42,18 +42,18 @@ install-dependencies:

install-tools:
# generation
go get golang.org/x/tools/cmd/stringer
go install golang.org/x/tools/cmd/stringer

# linting
go get golang.org/x/lint/golint/...
go get github.com/kisielk/errcheck/...
go get honnef.co/go/tools/...
go install golang.org/x/lint/golint/...
go install github.com/kisielk/errcheck/...
go install honnef.co/go/tools/...

# code coverage
go get golang.org/x/tools/cmd/cover
go get github.com/onsi/ginkgo/ginkgo/...
go get github.com/modocache/gover/...
go get github.com/mattn/goveralls/...
go install golang.org/x/tools/cmd/cover
go install github.com/onsi/ginkgo/ginkgo/...
go install github.com/modocache/gover/...
go install github.com/mattn/goveralls/...
.PHONY: install-tools

lint:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ Mutation testing is also especially interesting for comparing automatically gene
go-mutesting includes a binary which is go-getable.

```bash
go get -t -v github.com/zimmski/go-mutesting/...
go install github.com/zimmski/go-mutesting/cmd/go-mutesting@latest
```

The binary's help can be invoked by executing the binary without arguments or with the `--help` argument.
Expand Down

0 comments on commit 333bd36

Please sign in to comment.