Ignore:
Timestamp:
2017-08-04T20:21:51+02:00 (7 years ago)
Author:
donvip
Message:

detect empty REVISION.XML files

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/build-common.xml

    r33423 r33489  
    225225        </exec>
    226226        <condition property="svn.info.fail">
    227             <not><equals arg1="${svn.info.result}" arg2="0" /></not>
     227            <not>
     228                <and>
     229                    <equals arg1="${svn.info.result}" arg2="0" />
     230                    <length file="REVISION.XML" when="greater" length="1" />
     231                </and>
     232            </not>
    228233        </condition>
    229234    </target>
     
    511516    <target name="checkstyle">
    512517        <taskdef resource="com/puppycrawl/tools/checkstyle/ant/checkstyle-ant-task.properties" classpath="${checkstyle.jar}"/>
    513         <checkstyle config="../00_core_tools/checkstyle/josm_checks.xml">
     518        <checkstyle config="C:/SVN/josm/plugins/00_core_tools/checkstyle/josm_checks.xml">
    514519            <fileset dir="${basedir}/src" includes="**/*.java" excludes="boofcv/**/*.java,
    515520                                                                         com/google/**/*.java,
Note: See TracChangeset for help on using the changeset viewer.