Skip to content

Commit

Permalink
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -162,6 +162,10 @@ public void loadFile(String fileName, RubyNode currentNode) {
}

private void loadFileAbsolute(String fileName, RubyNode currentNode) {
if (isRunningOnWindows()) {
fileName.replace('\\', '/');
}

final byte[] bytes = FileUtils.readAllBytesInterruptedly(this, fileName);

// Assume UTF-8 for the moment

0 comments on commit a3311e2

Please sign in to comment.