Merge pull request #45 from thangdc94/thangdc94-patch-1

fix: author not show fullname in contribution stats
This commit is contained in:
Lukáš Mešťan 2018-09-21 08:55:32 +02:00 committed by GitHub
commit 42a657b0de
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -97,7 +97,8 @@ function detailedGitStats() {
}
/^Author:/ {
author = $2 " " $3
$1 = ""
author = $0
commits[author] += 1
commits["total"] += 1
}