Fix base number of commits

Signed-off-by: Przemo Firszt <przemo@firszt.eu>
This commit is contained in:
Przemo Firszt
2018-05-28 14:48:52 +01:00
committed by wmayer
parent 0ea75683f1
commit 1a71777f5f

View File

@@ -1,5 +1,5 @@
function git_commits_no {
commits_since_0_16=$(git rev-list master 0.16 --count)
total_commits=$((10268 + $commits_since_0_16))
total_commits=$((11532 + $commits_since_0_16))
echo $total_commits
}