From 337e95201af7ce6f61322925600333a1c40debd2 Mon Sep 17 00:00:00 2001 From: Ivan Daniluk Date: Mon, 15 May 2017 15:06:36 +0200 Subject: [PATCH] Update readme.md `go install` command won't download source, it works only if source already dowloaded into GOPATH. For the installation, we should use `go get` command - it will download sources first and then run `go install`. --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 1fd3fcd..66e327a 100644 --- a/readme.md +++ b/readme.md @@ -22,7 +22,7 @@ can also be used to implement any completions, see [Usage](#usage). 1. Type in your shell: ``` -go install github.com/posener/complete/gocomplete +go get github.com/posener/complete/gocomplete gocomplete -install ```