From 5f3c8054fd94ae872c5f1c6d27eb2ed707eefdcc Mon Sep 17 00:00:00 2001
From: Demian Katz <demian.katz@villanova.edu>
Date: Fri, 15 Apr 2016 07:56:58 -0400
Subject: [PATCH] Do not fail package task due to missing dir.

---
 build.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/build.xml b/build.xml
index 54c506fcfeb..a31b50172f9 100644
--- a/build.xml
+++ b/build.xml
@@ -239,7 +239,7 @@
   <!-- Prepare VuFind for distribution -->
   <target name="package" description="build VuFind packages for distribution">
     <!-- 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" />
 
     <!-- build the standard tar.gz archive -->
-- 
GitLab