From 5a0010abe99869ffb4cb70917caa5ba35346e3e8 Mon Sep 17 00:00:00 2001 From: Mikhail Sobolev Date: Tue, 26 Mar 2013 08:21:10 +0200 Subject: [PATCH] do not print executed commands --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index be67fcc23..793b14d54 100644 --- a/Makefile +++ b/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)