mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
do not print executed commands
This commit is contained in:
parent
a57b37ed0e
commit
5a0010abe9
1 changed files with 2 additions and 2 deletions
4
Makefile
4
Makefile
|
@ -18,7 +18,7 @@ all: $(DOCKER_BIN)
|
|||
|
||||
$(DOCKER_BIN): $(DOCKER_DIR)
|
||||
@mkdir -p $(dir $@)
|
||||
(cd $(DOCKER_MAIN); go get; go build -o $@)
|
||||
@(cd $(DOCKER_MAIN); go get; go build -o $@)
|
||||
|
||||
$(DOCKER_DIR):
|
||||
@mkdir -p $(dir $@)
|
||||
|
@ -33,4 +33,4 @@ else ifneq ($(DOCKER_DIR), $(realpath $(DOCKER_DIR)))
|
|||
endif
|
||||
|
||||
test: all
|
||||
(cd $(DOCKER_DIR); sudo -E go test)
|
||||
@(cd $(DOCKER_DIR); sudo -E go test)
|
||||
|
|
Loading…
Reference in a new issue