Skip to content
Snippets Groups Projects
Commit c4ad6b07 authored by Tianon Gravi's avatar Tianon Gravi
Browse files

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

parent 45b5d302
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment