We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9370c1 commit 13b3ee2Copy full SHA for 13b3ee2
1 file changed
upload.py
@@ -20,9 +20,9 @@
20
21
def get_files():
22
files = []
23
- for f in Path("benchmarks").rglob("*"):
+ for f in Path("site/benchmarks").rglob("*"):
24
if f.is_file() and not f.name.startswith("."):
25
- rel_path = str(f.relative_to("benchmarks")).replace("\\", "/")
+ rel_path = str(f.relative_to("site/benchmarks")).replace("\\", "/")
26
files.append((f, rel_path))
27
return files
28
0 commit comments