From a7c0e9a355216048063894a3d47aac2d81c42c3f Mon Sep 17 00:00:00 2001 From: Solomon Hykes Date: Fri, 3 May 2013 12:58:44 -0700 Subject: [PATCH] Fix a bug in the Makefile which caused dependency download to fail --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f35362d2ca..bae7d64909 100644 --- a/Makefile +++ b/Makefile @@ -38,7 +38,7 @@ $(DOCKER_BIN): $(DOCKER_DIR) $(DOCKER_DIR): @mkdir -p $(dir $@) - @if [ -h $@ ]; then rm -f $@; ln -sf $(CURDIR)/ $@; fi + @if [ -h $@ ]; then rm -f $@; fi; ln -sf $(CURDIR)/ $@ @(cd $(DOCKER_MAIN); go get $(GO_OPTIONS)) whichrelease: