From cf48a347ed7de8c94a9d1f68c3e0f9e375a2c7cd Mon Sep 17 00:00:00 2001 From: A <38929533+20142995@users.noreply.github.com> Date: Sun, 17 Nov 2024 00:24:19 +0800 Subject: [PATCH] Update run.py --- run.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/run.py b/run.py index 40ed9532..50df8972 100644 --- a/run.py +++ b/run.py @@ -149,6 +149,8 @@ def main(): continue for file_path in get_md_path(executable_path, url): name = os.path.splitext(os.path.basename(file_path))[0] + if name == '.md': + continue shutil.copy2(file_path,result_path) data[url] = name write_json(data_file,data)