Use absolute paths

This commit is contained in:
Ionică Bizău 2015-07-12 16:59:59 +03:00
parent a57746bbb4
commit dbcce8ddfc
1 changed files with 4 additions and 2 deletions

View File

@ -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 () {