Skip to content
Snippets Groups Projects
Commit 23e33824 authored by kaloyane's avatar kaloyane
Browse files

minor: do not copy .svn files to "targets" when creating fresh copy of the lucene indices

SVN: 20421
parent e4d7a9b9
No related branches found
No related tags found
No related merge requests found
...@@ -17,6 +17,7 @@ ...@@ -17,6 +17,7 @@
package ch.systemsx.cisd.openbis.generic.server.util; package ch.systemsx.cisd.openbis.generic.server.util;
import java.io.File; import java.io.File;
import java.io.FileFilter;
import java.io.IOException; import java.io.IOException;
import org.apache.commons.io.FileUtils; import org.apache.commons.io.FileUtils;
...@@ -61,7 +62,13 @@ public class TestInitializer ...@@ -61,7 +62,13 @@ public class TestInitializer
File srcPath = new File(LUCENE_INDEX_TEMPLATE_PATH); File srcPath = new File(LUCENE_INDEX_TEMPLATE_PATH);
try try
{ {
FileUtils.copyDirectory(srcPath, targetPath); FileUtils.copyDirectory(srcPath, targetPath, new FileFilter()
{
public boolean accept(File path)
{
return false == path.getName().equalsIgnoreCase(".svn");
}
});
new File(srcPath, FullTextIndexerRunnable.FULL_TEXT_INDEX_MARKER_FILENAME) new File(srcPath, FullTextIndexerRunnable.FULL_TEXT_INDEX_MARKER_FILENAME)
.createNewFile(); .createNewFile();
} catch (IOException ex) } catch (IOException ex)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment