Skip to content

Commit

Permalink
Use absolute classpath URL when loading jar-bootstrap. See #4000.
Browse files Browse the repository at this point in the history
headius committed Aug 11, 2016
1 parent 670e436 commit a46969f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/org/jruby/JarBootstrapMain.java
Original file line number Diff line number Diff line change
@@ -49,7 +49,7 @@
* </pre>
*/
public class JarBootstrapMain {
public static final String JAR_BOOTSTRAP = "classpath:jar-bootstrap.rb";
public static final String JAR_BOOTSTRAP = "classpath:/jar-bootstrap.rb";
public static void main(String[] args) {
String[] newArgs = new String[args.length + 1];
newArgs[0] = JAR_BOOTSTRAP;

0 comments on commit a46969f

Please sign in to comment.