Remove debuggers

This commit is contained in:
Ionică Bizău 2016-10-23 12:12:44 +03:00
parent 7e67fff1ce
commit a2bdca789c
2 changed files with 0 additions and 2 deletions

View File

@ -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

View File

@ -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");