mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-29 16:54:59 +00:00
fix: correct glob pattern for finding latest benchmark directory
This commit is contained in:
parent
e4a1d6fe89
commit
a89ce06377
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ def find_latest_benchmark_dir():
|
|||
|
||||
latest_dir = max(
|
||||
benchmark_dirs,
|
||||
key=lambda d: next((f.stat().st_mtime for f in d.rglob("*.md") if f.is_file()), 0),
|
||||
key=lambda d: next((f.stat().st_mtime for f in d.glob("*/.*.md") if f.is_file()), 0),
|
||||
)
|
||||
print(f"Using the most recently updated benchmark directory: {latest_dir.name}")
|
||||
return latest_dir
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue