Skip to content

Commit

Permalink
Bugfix: ensure intended recursive glob
Browse files Browse the repository at this point in the history
  • Loading branch information
mmore500 committed Dec 7, 2023
1 parent ac4b72e commit dfb8a8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/make_md.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def format_heading(level, text):
return symbol + text + "\n\n"


header_files = glob.glob("../include/emp/**/*.hpp")
header_files = glob.glob("../include/emp/**/*.hpp", recursive=True)

for h in header_files:
print(h)
Expand Down

0 comments on commit dfb8a8e

Please sign in to comment.