Remove extra backtick in install step

This just removes the extra back in the `go install` step. Helps people (like me) that just copy paste blindly into a Makefile or into the cmdline!
This commit is contained in:
Sriram Venkatesh 2018-06-14 14:32:50 +12:00 committed by Isaev Denis
parent 9181ca7175
commit 7f17cf01e5

View File

@ -405,7 +405,7 @@ required = [
```
In your CI scripts, install the vendored `golangci-lint` like this:
```bash
go install ./vendor/github.com/golangci/golangci-lint/cmd/golangci-lint/`
go install ./vendor/github.com/golangci/golangci-lint/cmd/golangci-lint/
```
Vendoring `golangci-lint` saves a network request, potentially making your CI system a little more reliable.