Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit d9a18be

Browse filesBrowse files
committed
build: suppress lint-md output
We don't need to print out the output if we've already installed it, at the same time we do want to see some output when we haven't installed. PR-URL: #16551 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Anatoli Papirovski <apapirovski@mac.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Khaidi Chu <i@2333.moe> Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
1 parent a41cc02 commit d9a18be
Copy full SHA for d9a18be

File tree

Expand file treeCollapse file tree

1 file changed

+4
-2
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

1 file changed

+4
-2
lines changed
Open diff view settings
Collapse file

‎Makefile‎

Copy file name to clipboardExpand all lines: Makefile
+4-2Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -976,9 +976,11 @@ lint-md-clean:
976976
$(RM) -r tools/remark-preset-lint-node/node_modules
977977

978978
lint-md-build:
979-
if [ ! -d tools/remark-cli/node_modules ]; then \
979+
@if [ ! -d tools/remark-cli/node_modules ]; then \
980+
echo "Markdown linter: installing remark-cli into tools/"; \
980981
cd tools/remark-cli && ../../$(NODE) ../../$(NPM) install; fi
981-
if [ ! -d tools/remark-preset-lint-node/node_modules ]; then \
982+
@if [ ! -d tools/remark-preset-lint-node/node_modules ]; then \
983+
echo "Markdown linter: installing remark-preset-lint-node into tools/"; \
982984
cd tools/remark-preset-lint-node && ../../$(NODE) ../../$(NPM) install; fi
983985

984986
lint-md: lint-md-build

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.