summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHenri Sara <henri.sara@itmill.com>2011-08-25 09:44:53 +0000
committerHenri Sara <henri.sara@itmill.com>2011-08-25 09:44:53 +0000
commit928ccdeade41e4ec80f1a39d7aaf71649329a8e4 (patch)
tree72873bc9b6113d30244c368ff7bba107d3411f63
parentfe5af04f3c4dbd05d16a6819df12c1f806809293 (diff)
downloadvaadin-framework-928ccdeade41e4ec80f1a39d7aaf71649329a8e4.tar.gz
vaadin-framework-928ccdeade41e4ec80f1a39d7aaf71649329a8e4.zip
Correct initialization order to enable 6.7 custom build publishing to internal snapshot repository
svn changeset:20640/svn branch:6.7
-rw-r--r--build/build.xml3
1 files changed, 2 insertions, 1 deletions
diff --git a/build/build.xml b/build/build.xml
index 4bc07d4654..a4b9226b92 100644
--- a/build/build.xml
+++ b/build/build.xml
@@ -669,7 +669,8 @@
<!-- ================================================================== -->
<!-- Main target for the custom build. -->
- <target name="custom-build" depends="clean-result, custom-build-init, nightly-init, init, build">
+ <!-- Need to read custom build configuration before calling clean-result -->
+ <target name="custom-build" depends="custom-build-init, clean-result, nightly-init, init, build">
</target>