diff options
author | kpdecker <kpdecker@gmail.com> | 2014-12-26 11:34:48 -0600 |
---|---|---|
committer | kpdecker <kpdecker@gmail.com> | 2014-12-26 11:34:48 -0600 |
commit | be0ba759250489858cb6844c5de47cfa003b87ba (patch) | |
tree | 02bcdcd89f1c25f1ebf15bcdfaf2427fe52ada91 | |
parent | 9ff3daf78556a62829b8982c467243dc810a8a6b (diff) | |
download | handlebars.js-be0ba759250489858cb6844c5de47cfa003b87ba.zip handlebars.js-be0ba759250489858cb6844c5de47cfa003b87ba.tar.gz handlebars.js-be0ba759250489858cb6844c5de47cfa003b87ba.tar.bz2 |
Fix case-insensitive file system compile issue
-rw-r--r-- | lib/handlebars/compiler/visitor.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/handlebars/compiler/visitor.js b/lib/handlebars/compiler/visitor.js index e98d0bf..3fb37fb 100644 --- a/lib/handlebars/compiler/visitor.js +++ b/lib/handlebars/compiler/visitor.js @@ -1,5 +1,5 @@ import Exception from "../exception"; -import AST from "./AST"; +import AST from "./ast"; function Visitor() { this.parents = []; |