Changeset 6585 in josm
- Timestamp:
- 2014-01-01T12:39:40+01:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/build.xml
r6545 r6585 40 40 --> 41 41 <target name="init-svn-revision-xml"> 42 <exec append="false" output="REVISION.XML" executable="svn" failifexecutionfails="false" errorproperty="svn.info.failed">42 <exec append="false" output="REVISION.XML" executable="svn" failifexecutionfails="false" resultproperty="svn.info.result"> 43 43 <env key="LANG" value="C"/> 44 44 <arg value="info"/> … … 46 46 <arg value="."/> 47 47 </exec> 48 <condition property="svn.info.success"> 49 <equals arg1="${svn.info.result}" arg2="0" /> 50 </condition> 48 51 </target> 49 52 <!-- 50 53 ** Initializes the REVISION.XML file from git information 51 54 --> 52 <target name="init-git-revision-xml" if="svn.info.failed">55 <target name="init-git-revision-xml" unless="svn.info.success"> 53 56 <exec append="false" output="REVISION.XML" executable="git" failifexecutionfails="false"> 54 57 <arg value="log"/>
Note:
See TracChangeset
for help on using the changeset viewer.