summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Daniluk <[email protected]>2017-05-15 15:06:36 +0200
committerGitHub <[email protected]>2017-05-15 15:06:36 +0200
commit337e95201af7ce6f61322925600333a1c40debd2 (patch)
tree3b920caf50cb4a4081b17c5c8bbed9b835dcf56a
parent75e4e53b5f947d05387dce5519b0c4bf19ea5e98 (diff)
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`.
-rw-r--r--readme.md2
1 files changed, 1 insertions, 1 deletions
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
```