Просмотр исходного кода

Replaced 'goinstall' with 'go get'

It seems like 'goinstall' is now 'go get', but getting that piece of information from web search is not too easy. Hope this would save other n00bs' time.
Tahir Hashmi 13 лет назад
Родитель
Сommit
37d535ec60
1 измененных файлов с 3 добавлено и 3 удалено
  1. 3 3
      README.md

+ 3 - 3
README.md

@@ -5,15 +5,15 @@ This is a memcache client library for the Go programming language
 
 ## Installing
 
-### Using *goinstall*
+### Using *go get*
 
-    $ goinstall github.com/bradfitz/gomemcache/memcache
+    $ go get github.com/bradfitz/gomemcache/memcache
 
 After this command *gomemcache* is ready to use. Its source will be in:
 
     $GOROOT/src/pkg/github.com/bradfitz/gomemcache/memcache
 
-You can use `goinstall -u -a` for update all installed packages.
+You can use `go get -u -a` for update all installed packages.
 
 ### Using *git clone* command: