Browse Source

Change how git-describe is called, fixes versioning in jaunty

tags/0.6.3m1rc1
Gregory Holmes 15 years ago
parent
commit
24e0539047
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      build-versioning.xml

+ 2
- 1
build-versioning.xml View File

@@ -30,7 +30,8 @@ version:
30 30
     <target name="-add-version" depends="-add-git-version, -add-svn-version"/>
31 31
 
32 32
     <target name="-add-git-version" if="is.git">
33
-        <exec executable="git-describe" output="${version.config}" append="true">
33
+        <exec executable="git" output="${version.config}" append="true">
34
+            <arg value="describe"/>
34 35
             <arg value="--tags"/>
35 36
         </exec>
36 37
     </target>

Loading…
Cancel
Save