diff --git a/lib/index.js b/lib/index.js index 69bac41..c00e9ad 100644 --- a/lib/index.js +++ b/lib/index.js @@ -14,6 +14,7 @@ var Ul = require("ul") , Typpy = require("typpy") , Exec = ChildProcess.exec , Spawn = ChildProcess.spawn + , LowDb = require("lowdb") ; // Constants @@ -30,11 +31,12 @@ function GitStats(config, data) { if (typeof config === "object") { self.config = config; } else { - this.config_path = Deffy(config, CONFIG_PATH) + this.config_path = Abs(Deffy(config, CONFIG_PATH)); self.config = this.getConfig(); } - this.path = Deffy(data, DEFAULT_STORE); + this.path = Abs(Deffy(data, DEFAULT_STORE)); + } GitStats.prototype.getConfig = function () {