Browse Source

fix inconsistent handling of cvs.found - fail if we cannot use CVS

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@275169 13f79535-47bb-0310-9956-ffa450edef68
master
Stefan Bodewig 22 years ago
parent
commit
8dde1c7b99
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      patch.xml

+ 3
- 1
patch.xml View File

@@ -22,7 +22,9 @@
</or>
</condition>

<target name="createpatch" if="cvs.found">
<target name="createpatch">
<fail unless="cvs.found"
message="You need a version of cvs to create the patch"/>
<cvs command="-q diff -u" output="${patch.file}"/>
</target>



Loading…
Cancel
Save