mirror of
https://github.com/PolyhedralDev/Terra.git
synced 2026-06-17 14:21:08 +00:00
dont check addon versions until Strata is fixed
This commit is contained in:
+3
-2
@@ -50,8 +50,9 @@ public class DependencySorter {
|
|||||||
BaseAddon dependency = addons.get(id);
|
BaseAddon dependency = addons.get(id);
|
||||||
|
|
||||||
if(!range.isSatisfiedBy(dependency.getVersion())) {
|
if(!range.isSatisfiedBy(dependency.getVersion())) {
|
||||||
throw new DependencyVersionException("Addon " + addon.getID() + " specifies dependency on " + id + ", versions " + range +
|
// FIXME - Strata is currently broken.
|
||||||
", but non-matching version " + dependency.getVersion().getFormatted() + " is installed..");
|
//throw new DependencyVersionException("Addon " + addon.getID() + " specifies dependency on " + id + ", versions " + range +
|
||||||
|
// ", but non-matching version " + dependency.getVersion().getFormatted() + " is installed..");
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!visited.get(dependency.getID())) { // if we've not visited it yet
|
if(!visited.get(dependency.getID())) { // if we've not visited it yet
|
||||||
|
|||||||
Reference in New Issue
Block a user