summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorArtur Signell <artur.signell@itmill.com>2010-04-09 12:12:46 +0000
committerArtur Signell <artur.signell@itmill.com>2010-04-09 12:12:46 +0000
commit8c018ed4ffcb3ef41414154e3c5a478740e5d45b (patch)
treeddc28b8bad4bebf87ced87404167fbf706675d4d /build
parentfe43fd65b1c77806e7190426cc7c27836e32432a (diff)
downloadvaadin-framework-8c018ed4ffcb3ef41414154e3c5a478740e5d45b.tar.gz
vaadin-framework-8c018ed4ffcb3ef41414154e3c5a478740e5d45b.zip
Fixed obvious error for #4467
svn changeset:12441/svn branch:6.3
Diffstat (limited to 'build')
-rw-r--r--build/build.xml12
1 files changed, 6 insertions, 6 deletions
diff --git a/build/build.xml b/build/build.xml
index 0f57c5e315..0723e81934 100644
--- a/build/build.xml
+++ b/build/build.xml
@@ -903,22 +903,22 @@
</target>
<target name="manual-package" depends="manual-init, manual-copy">
- <tar destfile="${result-path}/${product-file}-docs-${version.full}.zip" compression="gzip" longfile="gnu">
- <tarfileset prefix="docs" dir="${result-path}/${product-file}-${version.full}/WebContent/docs">
+ <zip destfile="${result-path}/${product-file}-docs-${version.full}.zip">
+ <zipfileset prefix="docs" dir="${result-path}/${product-file}-${version.full}/WebContent/docs">
<patternset>
<include name="api/**" />
<include name="book-of-vaadin.pdf" />
<include name="example-source" />
</patternset>
- </tarfileset>
- <tarfileset prefix="docs" dir="${docdir}/build/result/package/WebContent/docs">
+ </zipfileset>
+ <zipfileset prefix="docs" dir="${docdir}/build/result/package/WebContent/docs">
<patternset>
<include name="book/**" />
<include name="tutorial/**" />
<include name="vaadin-tutorial.pdf" />
</patternset>
- </tarfileset>
- </tar>
+ </zipfileset>
+ </zip>
</target>
<target name="manual" depends="init, manual-init, manual-checkout, manual-build, manual-copy, manual-package">