azkaban-developers

Convered git tag command to git describe to get the current tag

2/4/2014 3:50:11 AM

Changes

build.xml 2(+1 -1)

Details

build.xml 2(+1 -1)

diff --git a/build.xml b/build.xml
index fdb64c1..da40592 100644
--- a/build.xml
+++ b/build.xml
@@ -58,7 +58,7 @@
 	    </exec>
 		
 	    <exec executable="git" outputproperty="git.tag" failifexecutionfails="false" errorproperty="">
-	        <arg value="tag"/>
+	        <arg value="describe"/>
 	    </exec>
 	    <condition property="git.tag" value="${git.tag}" else="${version}">
 	        <and>