Added Gox install to README.md

This commit is contained in:
gulyasm 2015-04-29 09:07:46 +02:00
parent f98ef07ca1
commit 9ca2ce7b25

View file

@ -60,10 +60,12 @@ the appropriate dev tooling already set up for you.
For local dev first make sure Go is properly installed, including setting up a
[GOPATH](https://golang.org/doc/code.html#GOPATH). After setting up Go,
install Godeps, a tool we use for vendoring dependencies:
install Godeps, a tool we use for vendoring dependencies and Gox, a simple cross
compilation tool:
```sh
$ go get github.com/tools/godep
$ go get github.com/mitchellh/gox
...
```