Commit de61e896fd686b4eb931bd2de37e5c6151a381ce

Authored by ww
1 parent 28e6a974

fix: build stencils.min.js on windows environment file separator not escape

No preview for this file type
@@ -57,7 +57,7 @@ public class Xml2Js @@ -57,7 +57,7 @@ public class Xml2Js
57 String name = f.getCanonicalPath() 57 String name = f.getCanonicalPath()
58 .substring(basePath.length() + 1); 58 .substring(basePath.length() + 1);
59 result.add( 59 result.add(
60 - "f['" + name + "'] = '" + processFile(f) + "';\n"); 60 + "f['" + name.replace("\\", "/") + "'] = '" + processFile(f) + "';\n");
61 } 61 }
62 } 62 }
63 } 63 }