Browse code

do not print executed commands

Mikhail Sobolev authored on 2013/03/26 15:21:10
Showing 1 changed files
... ...
@@ -18,7 +18,7 @@ all: $(DOCKER_BIN)
18 18
 
19 19
 $(DOCKER_BIN): $(DOCKER_DIR)
20 20
 	@mkdir -p  $(dir $@)
21
-	(cd $(DOCKER_MAIN); go get; go build -o $@)
21
+	@(cd $(DOCKER_MAIN); go get; go build -o $@)
22 22
 
23 23
 $(DOCKER_DIR):
24 24
 	@mkdir -p $(dir $@)
... ...
@@ -33,4 +33,4 @@ else ifneq ($(DOCKER_DIR), $(realpath $(DOCKER_DIR)))
33 33
 endif
34 34
 
35 35
 test: all
36
-	(cd $(DOCKER_DIR); sudo -E go test)
36
+	@(cd $(DOCKER_DIR); sudo -E go test)