Closed TomB654 closed 6 months ago
Trying to run the nativeRunAgent task gives me this failure message:
RunAgent failure: org.gradle.api.InvalidUserDataException: The configured executable does not exist (<path to my GraalVM JDK installation>\bin\java)
Using a debugger, I found what's likely causing this issue: https://github.com/gluonhq/gluonfx-gradle-plugin/blob/c8223742a2b0283741146558e4350cd9463f9929/src/main/java/com/gluonhq/gradle/tasks/NativeRunAgentTask.java#L107-L108
This sets the path for the java executable to a String ending in \bin\java, but it should be ending in \bin\java.exe. As a result, the exception above is thrown later.
\bin\java
\bin\java.exe
Trying to run the nativeRunAgent task gives me this failure message:
Using a debugger, I found what's likely causing this issue: https://github.com/gluonhq/gluonfx-gradle-plugin/blob/c8223742a2b0283741146558e4350cd9463f9929/src/main/java/com/gluonhq/gradle/tasks/NativeRunAgentTask.java#L107-L108
This sets the path for the java executable to a String ending in
\bin\java
, but it should be ending in\bin\java.exe
. As a result, the exception above is thrown later.