Skip to content

Commit b69ed9c

Browse files
BridgeARtargos
authored andcommitted
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: #22904 Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Sakthipriyan Vairamani <[email protected]> Reviewed-By: Denys Otrishko <[email protected]>
1 parent 89fe9ed commit b69ed9c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Makefile

+4-4
Original file line numberDiff line numberDiff line change
@@ -1081,8 +1081,8 @@ run-lint-doc-md = tools/lint-md.js -q -f $(LINT_MD_DOC_FILES)
10811081
# Lint all changed markdown files under doc/
10821082
tools/.docmdlintstamp: $(LINT_MD_DOC_FILES)
10831083
@echo "Running Markdown linter on docs..."
1084-
$(call available-node,$(run-lint-doc-md))
1085-
touch $@
1084+
@$(call available-node,$(run-lint-doc-md))
1085+
@touch $@
10861086

10871087
LINT_MD_TARGETS = src lib benchmark test tools/doc tools/icu
10881088
LINT_MD_ROOT_DOCS := $(wildcard *.md)
@@ -1093,8 +1093,8 @@ run-lint-misc-md = tools/lint-md.js -q -f $(LINT_MD_MISC_FILES)
10931093
# Lint other changed markdown files maintained by us
10941094
tools/.miscmdlintstamp: $(LINT_MD_MISC_FILES)
10951095
@echo "Running Markdown linter on misc docs..."
1096-
$(call available-node,$(run-lint-misc-md))
1097-
touch $@
1096+
@$(call available-node,$(run-lint-misc-md))
1097+
@touch $@
10981098

10991099
tools/.mdlintstamp: tools/.miscmdlintstamp tools/.docmdlintstamp
11001100

0 commit comments

Comments
 (0)