Skip to content

Commit

Permalink
Update install instructions to use "go install"
Browse files Browse the repository at this point in the history
The use of "go get" for installing go executables is deprecated as of
version 1.17: https://go.dev/doc/go-get-install-deprecation
  • Loading branch information
jonasbn committed Feb 25, 2022
1 parent 70b1936 commit 64489da
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,18 @@ $ curl https://gotest-release.s3.amazonaws.com/gotest_linux > gotest && chmod +x

Alternatively:

```bash
go install github.com/rakyll/gotest@latest
```

Or for a specification version

```bash
go install github.com/rakyll/gotest@v0.0.6
```

For Go versions lower than 1.17

```
$ go get -u github.com/rakyll/gotest
```
Expand Down

0 comments on commit 64489da

Please sign in to comment.