diff options
author | Jonatan Kronqvist <jonatan.kronqvist@itmill.com> | 2010-12-10 08:46:42 +0000 |
---|---|---|
committer | Jonatan Kronqvist <jonatan.kronqvist@itmill.com> | 2010-12-10 08:46:42 +0000 |
commit | 3530cd3e8b490d15f46d31b577dcc4ac0db5f64b (patch) | |
tree | e4722f7b97aaf3995e867a2989097d2546bfb594 /build | |
parent | 6d768284f2925ace1c7e6e6bb56b23fe237422cb (diff) | |
download | vaadin-framework-3530cd3e8b490d15f46d31b577dcc4ac0db5f64b.tar.gz vaadin-framework-3530cd3e8b490d15f46d31b577dcc4ac0db5f64b.zip |
Don't clean the checkout directory in the build script #6038
svn changeset:16440/svn branch:6.5
Diffstat (limited to 'build')
-rw-r--r-- | build/build.xml | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/build/build.xml b/build/build.xml index e06ebbe520..5cf1280223 100644 --- a/build/build.xml +++ b/build/build.xml @@ -68,14 +68,7 @@ <delete dir="${result-path}" includes="**/*" followsymlinks="false" defaultexcludes="false" includeemptydirs="true" failonerror="false"/> </target> - <!-- Clean checkout directory. --> - <target name="clean-checkout" depends=""> - <property file="build/build.properties" /> - - <delete dir="${checkout-path}" includes="**/*" followsymlinks="false" defaultexcludes="false" includeemptydirs="true" failonerror="false"/> - </target> - - <target name="clean-all" depends="clean-result, clean-checkout"> + <target name="clean-all" depends="clean-result"> </target> <!-- ================================================================== --> |