Skip to content
Snippets Groups Projects
Commit abd23b0b authored by Mick Jordan's avatar Mick Jordan
Browse files

refactor REnvVars for substitution in AOT environment

parent bb8a67a3
No related branches found
No related tags found
No related merge requests found
......@@ -161,7 +161,7 @@ public final class REnvVars implements RContext.ContextState {
* The only time this can happen legitimately is when run under the graalvm shell,
* which does not execute the shell script that normally sets R_HOME.
*/
rHomePath = Paths.get(REnvVars.class.getProtectionDomain().getCodeSource().getLocation().getPath()).getParent();
rHomePath = getRHomePath();
} else {
rHomePath = Paths.get(rHome);
}
......@@ -175,6 +175,13 @@ public final class REnvVars implements RContext.ContextState {
return rHome;
}
/**
* Separated for substitution in AOT environment.
*/
private static Path getRHomePath() {
return Paths.get(REnvVars.class.getProtectionDomain().getCodeSource().getLocation().getPath()).getParent();
}
private void checkRHome() {
String envRHome = envVars.get(R_HOME);
if (envRHome == null) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment