R
russ.vanderwerff
I'm trying to copy a directory using the Ant "copy" task... the syntax
I'm using is below:
<copy todir="${buildDir}">
<fileset dir="."/>
</copy>
The problem I'm having is this: the folder is an SVN working copy, and
I need the destination to be an SVN working copy as well. However,
whenver I copy it with the Ant "copy" task, the hidden ".svn"
subdirectories (which SVN uses for its version control) are not copied
over. Does anyone know if there's any way to tell Ant to copy hidden
files and folders as well? I've been looking at the official
documentation here:
http://ant.apache.org/manual/index.html
but I can't seem to find anything.
Thanks!
Russ
I'm using is below:
<copy todir="${buildDir}">
<fileset dir="."/>
</copy>
The problem I'm having is this: the folder is an SVN working copy, and
I need the destination to be an SVN working copy as well. However,
whenver I copy it with the Ant "copy" task, the hidden ".svn"
subdirectories (which SVN uses for its version control) are not copied
over. Does anyone know if there's any way to tell Ant to copy hidden
files and folders as well? I've been looking at the official
documentation here:
http://ant.apache.org/manual/index.html
but I can't seem to find anything.
Thanks!
Russ