diff options
author | Michael Bien <[email protected]> | 2011-02-27 18:27:28 +0100 |
---|---|---|
committer | Michael Bien <[email protected]> | 2011-02-27 18:27:28 +0100 |
commit | e87b4dd22d0398a8400c9c948255124245037e81 (patch) | |
tree | 3af4d64a633f3ac4e546d8f10ca14602e902e10a | |
parent | af312d1a87765c685586287c1c37533a28fb04cc (diff) |
no relative path in archive since 7zip support was added.
-rw-r--r-- | build.xml | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -204,8 +204,8 @@ </copy> <!-- zip/7z it --> - <zip basedir="${dist.dir}/tmp/${dist.zip.name}" destfile="${dist.dir}/${dist.zip.name}.zip"/> - <archive.7z basedir="${dist.dir}/tmp/${dist.zip.name}" destfile="${dist.dir}/${dist.zip.name}.7z" includes="*"/> + <zip basedir="${dist.dir}/tmp" destfile="${dist.dir}/${dist.zip.name}.zip"/> + <archive.7z basedir="${dist.dir}/tmp" destfile="${dist.dir}/${dist.zip.name}.7z" includes="*"/> <delete dir="${dist.dir}/tmp"/> </target> |