mirror of
https://github.com/IonicaBizau/git-stats.git
synced 2024-12-22 05:12:11 +01:00
Remove debuggers
This commit is contained in:
parent
7e67fff1ce
commit
a2bdca789c
2 changed files with 0 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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");
|
||||
|
|
Loading…
Reference in a new issue