Skip to content

Commit

Permalink
Updated installation documentation based on the
Browse files Browse the repository at this point in the history
deprecation go get for executables with Go version
1.17

REF: https://go.dev/doc/go-get-install-deprecation
  • Loading branch information
jonasbn committed Feb 18, 2022
1 parent 70b1936 commit 0306d54
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 0306d54

Please sign in to comment.