Skip to content

Commit

Permalink
Update gendoc to copy subdirectories
Browse files Browse the repository at this point in the history
Updating gendoc command to copy the whole docs directory into the docs dir, rather than just the top level
  • Loading branch information
matentzn committed Jan 17, 2024
1 parent a23a492 commit d256812
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ $(DOCDIR):
mkdir -p $@

gendoc: $(DOCDIR)
cp $(SRC)/docs/*md $(DOCDIR) ; \
cp -rf $(SRC)/docs/* $(DOCDIR) ; \
$(RUN) gen-doc -d $(DOCDIR) $(SOURCE_SCHEMA_PATH) --template-directory $(TEMPLATE_DIR)

testdoc: gendoc serve
Expand Down

0 comments on commit d256812

Please sign in to comment.