[MRM-1877] Checksum files always recreated

This commit is contained in:
Olivier Lamy 2015-03-23 14:23:38 +11:00
parent f5022a2721
commit 81411e352d
1 changed files with 1 additions and 1 deletions

View File

@ -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() )
{