We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d7cc778 commit 35319a2Copy full SHA for 35319a2
scripts/build_directory_md.py
@@ -31,7 +31,7 @@ def print_path(old_path: str, new_path: str) -> str:
31
32
def print_directory_md(top_dir: str = ".") -> None:
33
old_path = ""
34
- for filepath in sorted(good_file_paths()):
+ for filepath in sorted(good_file_paths(top_dir)):
35
filepath, filename = os.path.split(filepath)
36
if filepath != old_path:
37
old_path = print_path(old_path, filepath)
0 commit comments