From a165d8d250d38409a61ef6277d49d9a749a86b95 Mon Sep 17 00:00:00 2001 From: Ruben Bridgewater Date: Mon, 17 Sep 2018 16:33:49 +0200 Subject: [PATCH] build: stop printing execution of lint-md command The executed command is very verbose and removing that from the output improves the overall experience. --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 5325abe40c0307..86dc7a4ba3b2da 100644 --- a/Makefile +++ b/Makefile @@ -1081,8 +1081,8 @@ run-lint-doc-md = tools/lint-md.js -q -f $(LINT_MD_DOC_FILES) # Lint all changed markdown files under doc/ tools/.docmdlintstamp: $(LINT_MD_DOC_FILES) @echo "Running Markdown linter on docs..." - $(call available-node,$(run-lint-doc-md)) - touch $@ + @$(call available-node,$(run-lint-doc-md)) + @touch $@ LINT_MD_TARGETS = src lib benchmark test tools/doc tools/icu LINT_MD_ROOT_DOCS := $(wildcard *.md) @@ -1092,8 +1092,8 @@ run-lint-misc-md = tools/lint-md.js -q -f $(LINT_MD_MISC_FILES) # Lint other changed markdown files maintained by us tools/.miscmdlintstamp: $(LINT_MD_MISC_FILES) @echo "Running Markdown linter on misc docs..." - $(call available-node,$(run-lint-misc-md)) - touch $@ + @$(call available-node,$(run-lint-misc-md)) + @touch $@ tools/.mdlintstamp: tools/.miscmdlintstamp tools/.docmdlintstamp