Changeset 18976 in osm
- Timestamp:
- 2009-12-07T08:48:23+01:00 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/tageditor/build.xml
r18955 r18976 220 220 <!-- ** make sure svn is present as a command line tool ** --> 221 221 <target name="ensure-svn-present"> 222 <exec append="true" output="svn.log" executable="svn" fail onerror="false" resultproperty="svn.exit.code">222 <exec append="true" output="svn.log" executable="svn" failifexecutionfails="false" failonerror="false" resultproperty="svn.exit.code"> 223 223 <env key="LANG" value="C" /> 224 224 <arg value="--version" /> 225 225 </exec> 226 <fail message="Fatal: command 'svn' not found. Please make sure svn is installed on your system."> 226 <fail message="Fatal: command 'svn --version' failed. Please make sure svn is installed on your system."> 227 <!-- return code not set at all? Most likely svn isn't installed --> 228 <condition> 229 <not> 230 <isset property="svn.exit.code" /> 231 </not> 232 </condition> 233 </fail> 234 <fail message="Fatal: command 'svn --version' failed. Please make sure a working copy of svn is installed on your system."> 235 <!-- error code from SVN? Most likely svn is not what we are looking on this system --> 227 236 <condition> 228 237 <isfailure code="${svn.exit.code}" /> … … 230 239 </fail> 231 240 </target> 241 232 242 <target name="publish" depends="ensure-svn-present,core-info,commit-current,update-current,clean,dist,commit-dist"> 233 243 </target>
Note:
See TracChangeset
for help on using the changeset viewer.