From 9ca2ce7b254fde23bfb8e57e724dc58e69cbc294 Mon Sep 17 00:00:00 2001 From: gulyasm Date: Wed, 29 Apr 2015 09:07:46 +0200 Subject: [PATCH] Added Gox install to README.md --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ccaba7ad76..57c33f73bb 100644 --- a/README.md +++ b/README.md @@ -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 ... ```