Skip to content

Commit

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

print(f"Path: {path}")
print(f" - module_path = {module_path}")
print(f" - doc_path = {doc_path}")
print(f" - full_doc_path = {full_doc_path}")
print(f" - parts = {parts}")

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

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

0 comments on commit b77c468

Please sign in to comment.