Skip to content
Snippets Groups Projects
Commit c4674a62 authored by Demian Katz's avatar Demian Katz
Browse files

Unpack Solr to /tmp instead of $VUFIND_HOME/solr.

- This works around a technical issue in Vagrant; it also makes some logical sense.
parent 9690e663
No related merge requests found
......@@ -164,9 +164,9 @@
</then>
</if>
<!-- unpack the archive into solr/vendor -->
<untar file="${srcdir}/downloads/solr-${solr_version}.tgz" todir="${srcdir}/solr" />
<untar file="${srcdir}/downloads/solr-${solr_version}.tgz" todir="${tmp}" />
<delete dir="${srcdir}/solr/vendor" includeemptydirs="true" failonerror="false" />
<move file="${srcdir}/solr/solr-${solr_version}" tofile="${srcdir}/solr/vendor" />
<move file="${tmp}/solr-${solr_version}" tofile="${srcdir}/solr/vendor" />
<!-- make scripts executable -->
<chmod mode="0755">
<fileset dir="${srcdir}/solr/vendor/bin">
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment