Skip to content

Commit

Permalink
Replaced 'goinstall' with 'go get'
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Tahir Hashmi committed Aug 14, 2012
1 parent 345e5c6 commit 37d535e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down

0 comments on commit 37d535e

Please sign in to comment.