Browse Source

properly document <cvs>'s dest attribute

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@275282 13f79535-47bb-0310-9956-ffa450edef68
master
Stefan Bodewig 21 years ago
parent
commit
846faeb9f2
2 changed files with 8 additions and 1 deletions
  1. +4
    -1
      docs/manual/CoreTasks/cvs.html
  2. +4
    -0
      src/main/org/apache/tools/ant/taskdefs/AbstractCvsTask.java

+ 4
- 1
docs/manual/CoreTasks/cvs.html View File

@@ -54,7 +54,10 @@ from the command line in the target directory in which you are working.
</tr>
<tr>
<td valign="top">dest</td>
<td valign="top">the directory where the checked out files should be placed.</td>
<td valign="top">the directory where the checked out files should
be placed. Note that this is different from CVS's -d command line
switch as Ant will never shorten pathnames to avoid empty
directories.</td>
<td align="center" valign="top">No, default is project's basedir.</td>
</tr>
<tr>


+ 4
- 0
src/main/org/apache/tools/ant/taskdefs/AbstractCvsTask.java View File

@@ -571,6 +571,10 @@ public abstract class AbstractCvsTask extends Task {
/**
* The directory where the checked out files should be placed.
*
* <p>Note that this is different from CVS's -d command line
* switch as Ant will never shorten pathnames to avoid empty
* directories.</p>
*
* @param dest directory where the checked out files should be placed
*/
public void setDest(File dest) {


Loading…
Cancel
Save