Skip to content

Commit 2b9ff70

Browse files
committed
fix pathes
1 parent ff32618 commit 2b9ff70

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.root/generate_site_assets.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@ def get_pathes():
4848
data = json.load(f)
4949
collect_paths(data, [], pathes)
5050
for path in pathes:
51-
print(f"Checking versions for ./jars/{path}")
52-
if os.path.exists(f"./jars/{path}"):
53-
versions[path] = get_versions(f"./jars/{path}")
51+
print(f"Checking versions for ./{path}")
52+
if os.path.exists(path):
53+
versions[path] = get_versions(path)
5454
else: print("Not found")
5555
print(versions)
5656
return versions

0 commit comments

Comments
 (0)