mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Fix a bug in the Makefile which caused dependency download to fail
This commit is contained in:
parent
19df5a7965
commit
a7c0e9a355
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -38,7 +38,7 @@ $(DOCKER_BIN): $(DOCKER_DIR)
|
||||||
|
|
||||||
$(DOCKER_DIR):
|
$(DOCKER_DIR):
|
||||||
@mkdir -p $(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))
|
@(cd $(DOCKER_MAIN); go get $(GO_OPTIONS))
|
||||||
|
|
||||||
whichrelease:
|
whichrelease:
|
||||||
|
|
Loading…
Add table
Reference in a new issue