dont check addon versions until Strata is fixed

This commit is contained in:
dfsek
2021-11-27 09:58:01 -07:00
parent baf7230b1b
commit 7376533027

View File

@@ -50,8 +50,9 @@ public class DependencySorter {
BaseAddon dependency = addons.get(id);
if(!range.isSatisfiedBy(dependency.getVersion())) {
throw new DependencyVersionException("Addon " + addon.getID() + " specifies dependency on " + id + ", versions " + range +
", but non-matching version " + dependency.getVersion().getFormatted() + " is installed..");
// FIXME - Strata is currently broken.
//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