From 7ae5f5644b168c7e2b7d89c4348d2274967f4187 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A7=8B=E4=BA=91?= Date: Sun, 18 May 2025 13:00:01 +0800 Subject: [PATCH] =?UTF-8?q?remove:=20=E4=B8=8D=E5=86=8D=E7=94=9F=E6=88=90v?= =?UTF-8?q?alidation=5Fnotes?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build/validate.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/build/validate.py b/build/validate.py index 0f7be816..5bdef0ef 100755 --- a/build/validate.py +++ b/build/validate.py @@ -551,10 +551,5 @@ def main(): else: print(f"❌ 无效的路径: {path}") - # 生成提醒信息 - if all_notices: - with open('validation_notes.md', 'w') as f: - f.write("## 校验注意事项\n\n" + "\n".join(f"- {n}" for n in all_notices)) - if __name__ == "__main__": main()