Skip to content

Commit 13b3ee2

Browse files
committed
fix(upload): update the benchmarks path
1 parent e9370c1 commit 13b3ee2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

upload.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@
2020

2121
def get_files():
2222
files = []
23-
for f in Path("benchmarks").rglob("*"):
23+
for f in Path("site/benchmarks").rglob("*"):
2424
if f.is_file() and not f.name.startswith("."):
25-
rel_path = str(f.relative_to("benchmarks")).replace("\\", "/")
25+
rel_path = str(f.relative_to("site/benchmarks")).replace("\\", "/")
2626
files.append((f, rel_path))
2727
return files
2828

0 commit comments

Comments
 (0)