We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4779076 commit 285db13Copy full SHA for 285db13
lib/broccoli/broccoli-handlebars.js
@@ -22,6 +22,7 @@ class HandlebarReplace extends BroccoliCacheWriter {
22
23
build() {
24
this.listFiles().forEach((filePath) => {
25
+ filePath = path.normalize(filePath);
26
const destPath = filePath.replace(this.inputPaths[0], this.outputPath);
27
const content = fs.readFileSync(filePath, 'utf-8');
28
const template = Handlebars.compile(content);
0 commit comments