Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #59 from jenkinsci/JENKINS-44807
[JENKINS-44807] Don't forget to track the usage of the fingerprinted generated artifacts
  • Loading branch information
Cyrille Le Clerc committed Jun 14, 2017
2 parents 88ca34c + 576c9d3 commit 5853e87
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -134,7 +134,7 @@ public void process(@Nonnull StepContext context, @Nonnull Element mavenSpyLogsE
for (Map.Entry<String, String> artifactToFingerprint : artifactsToFingerPrint.entrySet()) {
String artifactPathInArchiveZone = artifactToFingerprint.getKey();
String artifactMd5 = artifactToFingerprint.getValue();
fingerprintMap.getOrCreate(run, artifactPathInArchiveZone, artifactMd5);
fingerprintMap.getOrCreate(run, artifactPathInArchiveZone, artifactMd5).addFor(run);
}

// add action
Expand Down

0 comments on commit 5853e87

Please sign in to comment.