Skip to content

Commit

Permalink
[Truffle] Always use "/" is default File.join character, matching MRI.
Browse files Browse the repository at this point in the history
  • Loading branch information
nirvdrum committed Feb 11, 2015
1 parent aa84fc8 commit f05bc37
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -335,7 +335,7 @@ public static void join(StringBuilder builder, Object[] parts) {

for (int n = 0; n < parts.length; n++) {
if (n > 0) {
builder.append(File.separator);
builder.append("/");
}

if (parts[n] instanceof RubyArray) {
Expand Down

0 comments on commit f05bc37

Please sign in to comment.