From 02e7161b299fd555ce2f49604e1f211c57e0705d Mon Sep 17 00:00:00 2001 From: Sudharshan S Date: Sat, 19 Jul 2014 22:02:49 +0530 Subject: [PATCH] Install gox during build time Just so that we can just run `make` without installing gox separatelyy --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index a39e8ee0e..0303d8843 100644 --- a/Makefile +++ b/Makefile @@ -18,6 +18,7 @@ all: deps deps: @$(ECHO) "$(OK_COLOR)==> Installing dependencies$(NO_COLOR)" @go get -d -v ./... + @go get github.com/mitchellh/gox @echo $(DEPS) | xargs -n1 go get -d updatedeps: