Skip to content

Commit

Permalink
Skip backend in docs build
Browse files Browse the repository at this point in the history
  • Loading branch information
obackhouse committed Nov 24, 2024
1 parent 21f3ecb commit 6590d50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/gen_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
doc_path = doc_path.with_name("index.md")
full_doc_path = full_doc_path.with_name("index.md")

if not len(parts) or parts[-1] == "__main__" or parts[0] == "codegen":
if not len(parts) or parts[-1] == "__main__" or parts[0] in ("codegen", "backend"):
continue

with mkdocs_gen_files.open(full_doc_path, "w") as fd:
Expand Down

0 comments on commit 6590d50

Please sign in to comment.