Using cvs directly I can specify the destination directory of a checkout via
the -d flag.
This avoids deep directory structures in the workarea if I want to get only
a part of the repository.
for example the command
cvs checkout -d work some/deep/repository/hierarchy
would create a directory work which contains the files located in the
repository under some/deep/repository/hierarchy
I tried the cvs task with the dest attribute like the following:
<cvs
cvsRoot="${cvsroot}"
dest="work"
package="some/deep/repository/hierarchy"
/>
But in the above example I get the structure
work/some/deep/repository/hierarchy/....
Is there a way to get the same results with ANT as with the above cvs
command ?
Regards,
Ulrich