Skip to content

Commit

Permalink
[MGPG-66] fix handling of excluded files
Browse files Browse the repository at this point in the history
  • Loading branch information
Syquel committed Mar 1, 2021
1 parent b38c638 commit 26aa5b3
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,12 @@ else if ( project.getAttachedArtifacts().isEmpty() )

File file = artifact.getFile();

if ( isExcluded( file.getPath() ) )
{
getLog().debug( "Skipping generation of signature for excluded " + file );
continue;
}

getLog().debug( "Generating signature for " + file );

File signature = signer.generateSignatureForArtifact( file );
Expand Down

0 comments on commit 26aa5b3

Please sign in to comment.