Marcello Del Buono
Results
1
comments of
Marcello Del Buono
I fixed it as follows: ```js registerPartials(path.resolve(escapeGlob(__dirname), './partials/**/*.hbs')) ``` Where the `escapeGlob` function is defined below: ```js function escapeGlob (glob) { return glob .replace(/\\/g, '\\\\') .replace(/\*/g, '\\*') .replace(/\?/g, '\\?') .replace(/\[/g,...