From 93b2d10537742f9304144ac55eba222c6d21ee28 Mon Sep 17 00:00:00 2001
From: Denis Isaev <denis@golangci.com>
Date: Tue, 8 Jan 2019 09:48:43 +0300
Subject: [PATCH] docs: make readme after the last README fix

---
 README.md | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/README.md b/README.md
index fb8dc2d3..2e55f4e9 100644
--- a/README.md
+++ b/README.md
@@ -87,15 +87,16 @@ update if needed.
 
 ### Local Installation
 
-It's a not recommended for your CI pipeline. Only install like this for your local development environment.
+Local installation is not recommended for your CI pipeline. Only install the linter this way in a local development environment.
 
 ```bash
-go get -u github.com/golangci/golangci-lint
+go get -u github.com/golangci/golangci-lint/cmd/golangci-lint
 cd $(go env GOPATH)/src/github.com/golangci/golangci-lint/cmd/golangci-lint
 go install -ldflags "-X 'main.version=$(git describe --tags)' -X 'main.commit=$(git rev-parse --short HEAD)' -X 'main.date=$(date)'"
 ```
+(On Windows, you can run the above commands with Git Bash, which comes with [Git for Windows](https://git-scm.com/download/win).)
 
-You can also install it on OSX using brew:
+You can also install it on MacOS using [brew](https://brew.sh/):
 
 ```bash
 brew install golangci/tap/golangci-lint