mirror of https://github.com/apache/archiva.git
take care of non absolute directories
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1196839 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
eb125e9a34
commit
b698377ca7
|
@ -515,7 +515,7 @@ public class DefaultManagedRepositoryAdmin
|
|||
}
|
||||
|
||||
configuration.addManagedRepository( repository );
|
||||
|
||||
|
||||
}
|
||||
|
||||
public IndexingContext createIndexContext( ManagedRepository repository )
|
||||
|
@ -541,6 +541,10 @@ public class DefaultManagedRepositoryAdmin
|
|||
if ( indexDir != null && !"".equals( indexDir ) )
|
||||
{
|
||||
indexDirectory = new File( repository.getIndexDirectory() );
|
||||
if ( !indexDirectory.isAbsolute() )
|
||||
{
|
||||
indexDirectory = new File( managedRepository, repository.getIndexDirectory() );
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue