py修改
All checks were successful
API接口参数变更检测 / api-param-check (push) Successful in 17s

This commit is contained in:
2026-06-03 15:44:25 +08:00
parent 0fd10f9d46
commit 6af9324e4b
2 changed files with 18 additions and 13 deletions

View File

@@ -130,7 +130,7 @@ def main() -> int:
print("[Git] 首次提交,无可对比版本,跳过。")
return 0
changed_files = get_changed_java_controller_files(prev_sha, commit_info.sha)
changed_files = [f.replace("\\", "/") for f in get_changed_java_controller_files(prev_sha, commit_info.sha)]
if not changed_files:
print("[Git] 本次提交未变更 Controller 文件,跳过。")
return 0