fix recursive call

This commit is contained in:
Djalim Simaila 2022-12-13 16:06:23 +01:00
parent c8eae1fb06
commit 00ff7ff6d8

View File

@ -104,7 +104,7 @@ public class FedoraDistribution implements Distribution {
continue;
if (depName.contains("/"))
continue;
deps.add(getPackageTree(depName, depth - 1));
deps.add(getPackageTreeInternal(depName, depth - 1));
}
return new Package(name, version, repo, description, deps);
}