From 9bce14172aae3c4e0d59121d552d08fb261ed657 Mon Sep 17 00:00:00 2001 From: Joyee Cheung Date: Thu, 1 Feb 2018 22:39:51 +0800 Subject: [PATCH] build: do not suppress output in make doc-only This helps to show the cause of errors in the CI. PR-URL: https://github.com/nodejs/node/pull/18507 Reviewed-By: James M Snell Reviewed-By: Gibson Fahnestock Reviewed-By: Daniel Bevenius Reviewed-By: Ruben Bridgewater Reviewed-By: Colin Ihrig --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d0b481d03ab9f3..03a66fb4bbf00d 100644 --- a/Makefile +++ b/Makefile @@ -558,7 +558,7 @@ doc-only: $(apidoc_dirs) $(apiassets) if [ ! -d doc/api/assets ]; then \ $(MAKE) tools/doc/node_modules/js-yaml/package.json; \ fi; - @$(MAKE) -s $(apidocs_html) $(apidocs_json) + @$(MAKE) $(apidocs_html) $(apidocs_json) doc: $(NODE_EXE) doc-only