fix: author not show fullname

This commit is contained in:
Phạm Ngọc Thắng 2018-09-19 10:17:16 +07:00 committed by GitHub
parent 6b54e9d8df
commit e5727cf4e9
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
}