Skip to content

Commit

Permalink
Update gendoc to copy subdirectories (#346)
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. The current behaviour made a lot of
pages inaccessible.
  • Loading branch information
matentzn authored Jan 17, 2024
1 parent a23a492 commit 21da709
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 21da709

Please sign in to comment.