From c4ad6b077d87bb501ed651bfc87c3e332c7d38d7 Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Wed, 8 May 2013 14:50:26 -0600 Subject: [PATCH] Swap "go get" for "go get -d", especially to compile on go1.1rc; fixes #561 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index bae7d64909..9527d3f750 100644 --- a/Makefile +++ b/Makefile @@ -39,7 +39,7 @@ $(DOCKER_BIN): $(DOCKER_DIR) $(DOCKER_DIR): @mkdir -p $(dir $@) @if [ -h $@ ]; then rm -f $@; fi; ln -sf $(CURDIR)/ $@ - @(cd $(DOCKER_MAIN); go get $(GO_OPTIONS)) + @(cd $(DOCKER_MAIN); go get -d $(GO_OPTIONS)) whichrelease: echo $(RELEASE_VERSION)