From 7f17cf01e59954fd4749a1930208ac7c263084ef Mon Sep 17 00:00:00 2001 From: Sriram Venkatesh Date: Thu, 14 Jun 2018 14:32:50 +1200 Subject: [PATCH] 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! --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 77c6d042..fdbd982c 100644 --- a/README.md +++ b/README.md @@ -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.