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
  • Loading branch information
headius committed Aug 11, 2016
1 parent af1d26d commit 00bfccf
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
Expand Up @@ -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;
Expand Down

0 comments on commit 00bfccf

Please sign in to comment.