Skip to content

Commit bf86c93

Browse files
committed
wip
1 parent f4ed072 commit bf86c93

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/generate-lockfile.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,8 @@ def find_coursier_artifacts(cache_dir: Path) -> list[Path]:
9090
continue
9191

9292
for path in https_dir.rglob("*"):
93-
if path.is_file() and path.suffix in (".jar", ".pom"):
93+
# Include Maven artifacts (.jar, .pom) and Ivy artifacts (.xml for ivy.xml)
94+
if path.is_file() and path.suffix in (".jar", ".pom", ".xml"):
9495
artifacts.append(path)
9596

9697
return sorted(artifacts)

0 commit comments

Comments
 (0)