You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
checkRange("Gradle", GradleVersion.current(), minVersionInclusive, maxVersionExclusive, "\nNote: Upgrade your gradle version first before trying to switch to FG4.");
if (minVersionInclusive != null && current.compareTo(minVersionInclusive) < 0)
530
-
thrownewRuntimeException(String.format("Found %s version %s. Minimum required is %s.%s", name, current, minVersionInclusive, additional));
533
+
thrownewRuntimeException(String.format("Found %s version %s. Minimum required is %s.%s", name, current, minVersionInclusive, additionalMin));
531
534
532
535
if (maxVersionExclusive != null && current.compareTo(maxVersionExclusive) >= 0)
533
-
thrownewRuntimeException(String.format("Found %s version %s. Versions %s and newer are not supported yet.", name, current, maxVersionExclusive));
536
+
thrownewRuntimeException(String.format("Found %s version %s. Versions %s and newer are not supported yet.%s", name, current, maxVersionExclusive, additionalMax));
534
537
}
535
538
536
539
/**
@@ -546,14 +549,14 @@ public static void checkEnvironment() {
546
549
checkJavaRange(
547
550
// Minimum must be update 101 as it's the first one to include Let's Encrypt certificates.
0 commit comments