You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficcontrol.apache.org by da...@apache.org on 2016/11/28 17:15:37 UTC

[4/4] incubator-trafficcontrol git commit: revcount and commit from buildno

revcount and commit from buildno

(cherry picked from commit 646b7e9bcd017c940471fb198b32451872d4edc2)


Project: http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/commit/18160b9b
Tree: http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/tree/18160b9b
Diff: http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/diff/18160b9b

Branch: refs/heads/1.8.x
Commit: 18160b9b7a2e226ece831dab5ba278d039c3e440
Parents: 2c60b19
Author: Dan Kirkwood <da...@gmail.com>
Authored: Sat Nov 12 19:00:25 2016 -0700
Committer: Dan Kirkwood <da...@gmail.com>
Committed: Mon Nov 28 10:12:18 2016 -0700

----------------------------------------------------------------------
 build/functions.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-trafficcontrol/blob/18160b9b/build/functions.sh
----------------------------------------------------------------------
diff --git a/build/functions.sh b/build/functions.sh
index ef0c222..c9dba30 100755
--- a/build/functions.sh
+++ b/build/functions.sh
@@ -57,7 +57,7 @@ function isInGitTree() {
 function getBuildNumber() {
 	local in_git=$()
 	if isInGitTree; then
-		local commits=$(getRevCount)
+		local commits=$(git rev-list HEAD 2>/dev/null | wc -l)
 		local sha=$(git rev-parse --short=8 HEAD)
 		echo "$commits.$sha"
 	else