Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
4.0-BETA, 6.0
-
None
-
None
Description
In 4.x or trunk, 'ant example' assumes that there is an old example/solr-webapp and attempts to remove it. The rule to remove it should ignore errors.
diff --git solr/build.xml solr/build.xml index ec1fcee..142d2b6 100644 --- solr/build.xml +++ solr/build.xml @@ -50,7 +50,7 @@ <attribute name="Main-Class" value="org.apache.solr.util.SimplePostTool"/> </manifest> </jar> - <delete includeemptydirs="true"> + <delete includeemptydirs="true" failonerror="false"> <fileset dir="${example}/solr-webapp" includes="**/*"/> </delete> <echo>See ${example}/README.txt for how to run the Solr example configuration.</echo>
Attachments
Issue Links
- is part of
-
SOLR-3609 Pin down the Solr webapp to a specific directory rather than a unique random directory.
- Closed