Swap "go get" for "go get -d", especially to compile on go1.1rc; fixes #561

Upstream-commit: c4ad6b077d87bb501ed651bfc87c3e332c7d38d7
Component: engine
This commit is contained in:
Tianon Gravi
2013-05-08 14:51:50 -06:00
parent b96b79e6a4
commit 0b78bccf28
+1 -1
View File
@@ -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)