Hi!

I've problem with excludes when creating a zip file.
I want to create a zip files containing all files in current directory, but exclude two directories.


<!-- ZIP-task -->
<target name="createZIP">
<property name="build"       location="bin"/>
<property name="dist"        location="dist"/>
<zip destfile="${dist}/${ant.project.name}.zip" basedir="." excludes="${dist}, ${build}"/>
</target>

/Andreas

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to