From dfb8a8e66c0d405993af78aead124dc2735d68c1 Mon Sep 17 00:00:00 2001 From: Matthew Andres Moreno Date: Thu, 7 Dec 2023 17:43:40 -0500 Subject: [PATCH] Bugfix: ensure intended recursive glob --- doc/make_md.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/make_md.py b/doc/make_md.py index 4d628bdbbb..1b497624aa 100644 --- a/doc/make_md.py +++ b/doc/make_md.py @@ -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)