Fix loading of plugins when book root is relative

This commit is contained in:
Samy Pessé
2015-01-25 12:08:52 +01:00
parent e366c05238
commit d60a9763cd
+1 -1
View File
@@ -30,7 +30,7 @@ var Book = function(root, context, parent) {
})
// Root folder of the book
this.root = root;
this.root = path.resolve(root);
// Parent book
this.parent = parent;