DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=29395>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=29395

ant modifies files while copying

           Summary: ant modifies files while copying
           Product: Ant
           Version: 1.6.1
          Platform: PC
        OS/Version: Linux
            Status: UNCONFIRMED
          Severity: Normal
          Priority: Other
         Component: Build Process
        AssignedTo: [EMAIL PROTECTED]
        ReportedBy: [EMAIL PROTECTED]


I dont actually know whether its a bug or its a problem with my script.This is
the portion of script i used  

"<copy todir="${build}/">
 <fileset dir="${src}" includes="**/*.*"/>
 </copy>"

i have some image files in the src directory .After executing the script ant
copies these files to the build directory,the size of the files are modifed to
almost double.and also my java program cannot open these files as they are
invalid. i comodified my script as follows 

 <copy todir="${build}/">
      <fileset dir="${src}" includes="**/*.java"/>
      <fileset dir="${src}" includes="**/*.jpg"/>
  </copy>

now its working properly

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to