Skip to content

Commit 413c00c

Browse files
Exclude .bsi.html artifacts from issues file scan
1 parent b8cf1dc commit 413c00c

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

bin/build-index.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,8 @@ def escape_html(text):
175175

176176
metadata["dir"] = entry.name
177177
metadata["currentWork"] = False
178-
issues_files = sorted(glob.glob(os.path.join(entry.path, "issues-*.html")))
178+
issues_files = sorted(f for f in glob.glob(os.path.join(entry.path, "issues-*.html"))
179+
if not f.endswith(".bsi.html"))
179180
metadata["issues"] = [os.path.basename(f) for f in issues_files]
180181
specgroups[metadata["shortname"]].append(metadata)
181182

0 commit comments

Comments
 (0)