From b50571602afdbed72d3cb9e412c0e4ef5d1bae80 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 fbe19b961bd..547890111be 100644 --- a/Makefile +++ b/Makefile @@ -619,7 +619,7 @@ doc-only: $(apidoc_dirs) $(apiassets) ## Builds the docs with the local or the 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) .PHONY: doc doc: $(NODE_EXE) doc-only