Skip to content

Commit

Permalink
💅 updates the doc with information about the installation when 1.18 (#21
Browse files Browse the repository at this point in the history
)

* Update installation information for Go 1.18

go get cannot used outside of a Go module in Go 1.18 without disabling modules

* Update installation information for Go 1.18
  • Loading branch information
thiago-scherrer authored Jan 17, 2023
1 parent 4d1f3d3 commit 4d4eb41
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,20 @@ TODO:

### Installation

```
Go less than 1.18:


```sh
$ go get github.com/houqp/sqlvet
```

Go greater or equal 1.18:


```sh
$ go install github.com/houqp/sqlvet@latest
```

### Zero conf

SqlVet should work out of the box for any Go project using go modules:
Expand Down

0 comments on commit 4d4eb41

Please sign in to comment.