Browse code

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

Tianon Gravi authored on 2013/05/09 05:50:26
Showing 1 changed files
... ...
@@ -39,7 +39,7 @@ $(DOCKER_BIN): $(DOCKER_DIR)
39 39
 $(DOCKER_DIR):
40 40
 	@mkdir -p $(dir $@)
41 41
 	@if [ -h $@ ]; then rm -f $@; fi; ln -sf $(CURDIR)/ $@
42
-	@(cd $(DOCKER_MAIN); go get $(GO_OPTIONS))
42
+	@(cd $(DOCKER_MAIN); go get -d $(GO_OPTIONS))
43 43
 
44 44
 whichrelease:
45 45
 	echo $(RELEASE_VERSION)