diff --git a/bin/git-stats b/bin/git-stats index 9c6eb08..87c402d 100755 --- a/bin/git-stats +++ b/bin/git-stats @@ -84,7 +84,6 @@ new Tilda(`${__dirname}/../package.json`, { ] , notes: "Your commit history is kept in ~/.git-stats by default. You can create ~/.git-stats-config.json to specify different defaults." }).main(action => { - debugger let recordOpt = action.options.record , sinceDateOpt = action.options.since diff --git a/lib/index.js b/lib/index.js index ed2cb6f..0a42877 100644 --- a/lib/index.js +++ b/lib/index.js @@ -526,7 +526,6 @@ GitStats.prototype.ansiCalendar = function (options, callback) { */ GitStats.prototype.authors = function (options, callback) { var repo = new Gry(options.repo); - debugger repo.exec(`shortlog -s -n --all --since "${options.start.toString()}" --until "${options.end.toString()}"`, function (err, stdout) { if (err) { return callback(err); } var lines = stdout.split("\n");