Fix an obscure macro evaluation bug on windows
This commit is contained in:
@@ -65,7 +65,7 @@ class Stream {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private function new(file:String, content:String) {
|
private function new(file:String, content:String) {
|
||||||
this.file = file;
|
this.file = file.replace('\\', '/');
|
||||||
|
|
||||||
// Banish ye Windows line-endings
|
// Banish ye Windows line-endings
|
||||||
if (content.indexOf('\r') >= 0) {
|
if (content.indexOf('\r') >= 0) {
|
||||||
|
Reference in New Issue
Block a user