mirror of https://github.com/apache/archiva.git
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:
parent
200a649b36
commit
837bb4a0b6
|
@ -160,6 +160,10 @@ public class MetadataUpdaterConsumer
|
||||||
public void processFile( String path )
|
public void processFile( String path )
|
||||||
throws ConsumerException
|
throws ConsumerException
|
||||||
{
|
{
|
||||||
|
//Ignore paths like .indexer etc
|
||||||
|
if (path.startsWith("."))
|
||||||
|
return;
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
ArtifactReference artifact = repository.toArtifactReference( path );
|
ArtifactReference artifact = repository.toArtifactReference( path );
|
||||||
|
|
Loading…
Reference in New Issue