Ignore .indexer directories

git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@742846 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
James William Dumay 2009-02-10 04:46:37 +00:00
parent 200a649b36
commit 837bb4a0b6
1 changed files with 4 additions and 0 deletions

View File

@ -160,6 +160,10 @@ public class MetadataUpdaterConsumer
public void processFile( String path )
throws ConsumerException
{
//Ignore paths like .indexer etc
if (path.startsWith("."))
return;
try
{
ArtifactReference artifact = repository.toArtifactReference( path );