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=25163>.
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=25163

Unzip: java.io.IOException: Negative seek offset





------- Additional Comments From [EMAIL PROTECTED]  2003-12-03 14:33 -------
As a work-around (and when ant 1.6 beta3 comes out soon..)
you can use <for> from ant-contrib, (for is like foreach
but it uses macrodef instead of antcall so it is currently faster
for each iteration).
<project default="u" xmlns:ac="antlib:net.sf.antcontrib">
  <target name="u">
    <mkdir dir="unzipped"/>
    <ac:for param="file">
      <ac:path>
        <ac:fileset dir="${basedir}" includes="**/*.gz"/>
      </ac:path>
      <ac:sequential>
        <gunzip src="@{file}" dest="unzipped"/>
      </ac:sequential>
    </ac:for>
  </target>
</project>

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

Reply via email to