DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=25379>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=25379
Cvs Tasks doesn't handle wildcards, so why not add a fileset
Summary: Cvs Tasks doesn't handle wildcards, so why not add a
fileset
Product: Ant
Version: 1.6Beta
Platform: All
OS/Version: Other
Status: NEW
Severity: Normal
Priority: Other
Component: Core tasks
AssignedTo: dev@ant.apache.org
ReportedBy: fhanik@apache.org
I have a patch where you can specify a fileset in the Cvs task, each filename in
the fileset will be added to the command line, so a
"cvs add *" can be rewritten as
"cvs add"
<fileset dir="/my/dir">
<include name="*.*"/>
</fileset>
I have not added support for recursive directories, since to CVS you have to
specify relative path filenames, I guess I should do
CvsFileArgument = AbsoluteFilePath - CvsDestination
currently
CvsFileArgument = FileName
patch is attached
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@ant.apache.org
For additional commands, e-mail: dev-help@ant.apache.org
|