mirror of https://github.com/apache/archiva.git
[MRM-1877] Checksum files always recreated
This commit is contained in:
parent
f5022a2721
commit
81411e352d
|
@ -155,7 +155,7 @@ public class ArtifactMissingChecksumsConsumer
|
|||
private void createFixChecksum( String path, ChecksumAlgorithm checksumAlgorithm )
|
||||
{
|
||||
File artifactFile = new File( this.repositoryDir, path );
|
||||
File checksumFile = new File( this.repositoryDir, path + checksumAlgorithm.getExt() );
|
||||
File checksumFile = new File( this.repositoryDir, path + "." + checksumAlgorithm.getExt() );
|
||||
|
||||
if ( checksumFile.exists() )
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue