Update gradle.properties not found message

This commit is contained in:
JeremyStar™ 2024-07-11 05:00:00 +02:00
parent b4734841be
commit b7282d5c7d
Signed by: JeremyStarTM
GPG key ID: E366BAEF67E4704D

View file

@ -374,7 +374,7 @@ public final class EngineInformation {
InputStream gradleStream = EngineInformation.class.getClassLoader().getResourceAsStream("gradle.properties");
if (gradleStream == null) {
System.out.println("Unable to load build information: The bundled gradle.properties file could not be found. Do symlinks work on the system that built this JAR?");
System.out.println("Unable to load build information: The bundled gradle.properties file could not be found.");
Engine.getInstance().shutdown(69);
return;
}