From 5159985565929052cb30ce162201f04eb3854fe7 Mon Sep 17 00:00:00 2001 From: Kevin Wooten Date: Sun, 19 Feb 2023 18:45:57 -0700 Subject: [PATCH] Fix `generate-docs-html` in Makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8d1868b1a..4000a1a63 100644 --- a/Makefile +++ b/Makefile @@ -69,7 +69,7 @@ doc-symbol-graphs: cp $(ALLSYMDIR)/Shield*.json $(SYMDIR) generate-docs-html: - mkidr -p $(DOCSDIR) + mkdir -p $(DOCSDIR) swift package --allow-writing-to-directory $(DOCSDIR) generate-documentation --enable-inherited-docs --additional-symbol-graph-dir $(SYMDIR) --target Shield --output-path $(DOCSDIR) --transform-for-static-hosting $(BASEPATH) --level detailed --diagnostic-level hint generate-docs: clean doc-symbol-graphs generate-docs-html