How to unzip multiple files with Ant? I am using:
<unzip dest="./out">
<patternset>
<include name="**/*.zip"/>
</patternset>
<fileset dir="./in">
<include name="**/*.zip"/>
</fileset>
</unzip>
From the output it looks like ANT is correctly finding my files but nothing gets extracted:
[unzip] Expanding: c:\temp\in\test1.zip into c:\temp\out [unzip] Expanding: c:\temp\in\test2.zip into c:\temp\out
BUILD SUCCESSFUL Total time: 0 seconds
I can't figure out what I am doing wrong.