From 99c69efc3412c1f905d86b0d80dbac3776431b60 Mon Sep 17 00:00:00 2001 From: Przemo Firszt Date: Mon, 28 May 2018 14:48:52 +0100 Subject: [PATCH] Fix base number of commits Signed-off-by: Przemo Firszt --- package/fedora/rpkg.macros | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/fedora/rpkg.macros b/package/fedora/rpkg.macros index 8625272cff..f6641d9eed 100644 --- a/package/fedora/rpkg.macros +++ b/package/fedora/rpkg.macros @@ -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 }