You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-commits@lucene.apache.org by ho...@apache.org on 2009/10/05 05:10:05 UTC

svn commit: r821671 - /lucene/solr/trunk/build.xml

Author: hossman
Date: Mon Oct  5 03:10:05 2009
New Revision: 821671

URL: http://svn.apache.org/viewvc?rev=821671&view=rev
Log:
site dir doesn't exist in releases, we can't fail if it doesn't exist and they want to rebuild the artifacts (no need to recopy to docs)

Modified:
    lucene/solr/trunk/build.xml

Modified: lucene/solr/trunk/build.xml
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/build.xml?rev=821671&r1=821670&r2=821671&view=diff
==============================================================================
--- lucene/solr/trunk/build.xml (original)
+++ lucene/solr/trunk/build.xml Mon Oct  5 03:10:05 2009
@@ -638,7 +638,7 @@
           description="Packages the Solr Distribution files and Documentation."
           depends="dist, example, javadoc, dist-src, dist-javadoc">
 
-    <copy todir="${build.docs}">
+    <copy failonerror="false" todir="${build.docs}">
       <fileset dir="site" />
     </copy>