Skip to content

Commit

Permalink
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -127,7 +127,7 @@ public void init() {

for (IRubyObject path : ((org.jruby.RubyArray) runtime.getLoadService().getLoadPath()).toJavaArray()) {
if (!excludedLibPaths.contains(path.toString())) {
loadPath.slowPush(truffleContext.makeString(path.toString()));
loadPath.slowPush(truffleContext.makeString(new File(path.toString()).getAbsolutePath()));
}
}

0 comments on commit d996099

Please sign in to comment.