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

Fixed bug -- don't fail if directory does not exist.

parent cc0366b1
No related merge requests found
...@@ -239,7 +239,7 @@ ...@@ -239,7 +239,7 @@
<!-- Prepare VuFind for distribution --> <!-- Prepare VuFind for distribution -->
<target name="package" description="build VuFind packages for distribution"> <target name="package" description="build VuFind packages for distribution">
<!-- make sure the work area is empty, then rebuild it --> <!-- make sure the work area is empty, then rebuild it -->
<delete dir="${builddir}/packages" includeemptydirs="true" failonerror="true" /> <delete dir="${builddir}/packages" includeemptydirs="true" failonerror="false" />
<mkdir dir="${builddir}/packages" /> <mkdir dir="${builddir}/packages" />
<!-- build the standard tar.gz archive --> <!-- build the standard tar.gz archive -->
......
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