From 92fd4fcd3d8496524e8ed1368314660b23d070bc 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. PR-URL: https://github.com/nodejs/node/pull/22904 Reviewed-By: Richard Lau Reviewed-By: Rich Trott Reviewed-By: Sakthipriyan Vairamani Reviewed-By: Denys Otrishko --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 5fc2bb0c58f553..ab537289b4c4f9 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) @@ -1093,8 +1093,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