Temporary add another env variable JDK_15_0 that is set on TC agents

This commit is contained in:
Denis.Zharkov
2020-12-04 19:47:21 +03:00
parent 46c3979acd
commit f399f013dd
@@ -414,6 +414,11 @@ public class KotlinTestUtils {
@NotNull
public static File getJdk15Home() {
String jdk15 = System.getenv("JDK_15");
if (jdk15 == null) {
jdk15 = System.getenv("JDK_15_0");
}
if (jdk15 == null) {
throw new AssertionError("Environment variable JDK_15 is not set!");
}