From 7b72e8104898876a44b56bcc9606b5dc79e208fc Mon Sep 17 00:00:00 2001
From: Demian Katz <demian.katz@villanova.edu>
Date: Tue, 28 Apr 2015 12:54:18 -0400
Subject: [PATCH] Use default marc_local.properties as basis for indexing in
 CI. - Normally marc_local.properties has no effect, but this change allows us
 to catch issues there.

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

diff --git a/build.xml b/build.xml
index 8dd3d67d02f..f72320384c4 100644
--- a/build.xml
+++ b/build.xml
@@ -281,7 +281,8 @@
 
         <!-- create custom import configurations to load the MARC filename into the building facet to help
              test cases to limit searches to within specific collections of test records. -->
-        <exec command="echo building=\&quot;${BASENAME}\&quot; &gt; ${srcdir}/local/import/marc-${BASENAME}.properties" />
+        <copy file="${srcdir}/import/marc_local.properties" tofile="${srcdir}/local/import/marc-${BASENAME}.properties" />
+        <exec command="echo building=\&quot;${BASENAME}\&quot; &gt;&gt; ${srcdir}/local/import/marc-${BASENAME}.properties" />
         <exec command="sed -e &quot;s!marc_local.properties!marc-${BASENAME}.properties!&quot; ${srcdir}/local/import/import.properties &gt; ${srcdir}/local/import/import-${BASENAME}.properties" />
 
         <!-- perform the import -->
-- 
GitLab