aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--build/build.xml9
1 files changed, 8 insertions, 1 deletions
diff --git a/build/build.xml b/build/build.xml
index 4af539aeff..08980fcce3 100644
--- a/build/build.xml
+++ b/build/build.xml
@@ -1169,16 +1169,23 @@
<!-- Checkout doc repository. -->
<target name="manual-checkout" depends="manual-init" unless="docdir">
+ <property name="manual.repository" value="http://dev.vaadin.com/svn/doc/trunk"/>
+
+ <echo>Checking out manual from repository ${manual.repository}</echo>
+
<mkdir dir="${checkout-path}"/>
<exec executable="svn" dir="${checkout-path}">
<arg value="checkout"/>
- <arg value="http://dev.vaadin.com/svn/doc/trunk"/>
+ <arg value="-q"/>
+ <arg value="${manual.repository}"/>
<arg value="docs"/>
</exec>
<!-- Documentation source directory. -->
<property name="docdir" value="${checkout-path}/docs"/>
+
+ <echo>Manual checked out from repository successfully</echo>
</target>
<!-- If the XEP is installed, copy it to proper place. -->