mirror of
https://github.com/arzzen/git-quick-stats.git
synced 2026-09-10 07:36:19 -04:00
Hotfix for non-GNU awk on macOS
This commit is contained in:
parent
63eba9f1b8
commit
6692ec8aa3
|
|
@ -288,7 +288,7 @@ function detailedGitStats() {
|
|||
(more["total"] + less["total"]) * 100)
|
||||
}
|
||||
else {
|
||||
printf "\t lines changed: %d\t(0%)\n", more[author] + less[author]
|
||||
printf "\t lines changed: %d\t(0%%)\n", (more[author] + less[author])
|
||||
}
|
||||
printf "\t first commit: %s\n", first[author]
|
||||
printf "\t last commit: %s\n", last[author]
|
||||
|
|
|
|||
Loading…
Reference in a new issue