We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e4e46a commit d996099Copy full SHA for d996099
truffle/src/main/java/org/jruby/truffle/TruffleBridgeImpl.java
@@ -127,7 +127,7 @@ public void init() {
127
128
for (IRubyObject path : ((org.jruby.RubyArray) runtime.getLoadService().getLoadPath()).toJavaArray()) {
129
if (!excludedLibPaths.contains(path.toString())) {
130
- loadPath.slowPush(truffleContext.makeString(path.toString()));
+ loadPath.slowPush(truffleContext.makeString(new File(path.toString()).getAbsolutePath()));
131
}
132
133
0 commit comments