Commit de61e896fd686b4eb931bd2de37e5c6151a381ce
1 parent
28e6a974
fix: build stencils.min.js on windows environment file separator not escape
Showing
2 changed files
with
1 additions
and
1 deletions
No preview for this file type
... | ... | @@ -57,7 +57,7 @@ public class Xml2Js |
57 | 57 | String name = f.getCanonicalPath() |
58 | 58 | .substring(basePath.length() + 1); |
59 | 59 | result.add( |
60 | - "f['" + name + "'] = '" + processFile(f) + "';\n"); | |
60 | + "f['" + name.replace("\\", "/") + "'] = '" + processFile(f) + "';\n"); | |
61 | 61 | } |
62 | 62 | } |
63 | 63 | } | ... | ... |