You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Generated template naming (slashes) is inconsistent across mac and win platforms.
on windows:
TEMPLATES['res\templates\debug.tmpl'] = "<div class="panel">
......"
on mac:
TEMPLATES['res/templates/debug.tmpl'] = "<div class="panel">......"
The simplest solution would be in complile.js use unused normalizePath function
ex.
var templateName = path.relative(options.base, filepath) templateName=normalizePath(templateName);
The text was updated successfully, but these errors were encountered:
Generated template naming (slashes) is inconsistent across mac and win platforms.
......"on windows:
TEMPLATES['res\templates\debug.tmpl'] = "<div class="panel">
on mac:
TEMPLATES['res/templates/debug.tmpl'] = "<div class="panel">......"
The simplest solution would be in complile.js use unused normalizePath function
ex.
var templateName = path.relative(options.base, filepath) templateName=normalizePath(templateName);
The text was updated successfully, but these errors were encountered: