From a2bdca789c07d7cba30692b5223b0052fb5cd1e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ionic=C4=83=20Biz=C4=83u?= Date: Sun, 23 Oct 2016 12:12:44 +0300 Subject: [PATCH] Remove debuggers --- bin/git-stats | 1 - lib/index.js | 1 - 2 files changed, 2 deletions(-) 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");