do not print executed commands

This commit is contained in:
Mikhail Sobolev 2013-03-26 08:21:10 +02:00
parent a57b37ed0e
commit 5a0010abe9
1 changed files with 2 additions and 2 deletions

View File

@ -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)