From 4c51832bb3bd09320592eb2566d76b45f28d7afe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christoph=20L=C3=A4ubrich?= Date: Sun, 29 Dec 2024 17:48:03 +0100 Subject: [PATCH] Fix match checksum test accidently disabled (cherry picked from commit 3e1400339f774202c66ab4d6891f6ca8d3a40bc7) --- .../tycho/p2maven/transport/MavenArtifactDownloadProvider.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/p2-maven-plugin/src/main/java/org/eclipse/tycho/p2maven/transport/MavenArtifactDownloadProvider.java b/p2-maven-plugin/src/main/java/org/eclipse/tycho/p2maven/transport/MavenArtifactDownloadProvider.java index c81a08a480..906da41036 100644 --- a/p2-maven-plugin/src/main/java/org/eclipse/tycho/p2maven/transport/MavenArtifactDownloadProvider.java +++ b/p2-maven-plugin/src/main/java/org/eclipse/tycho/p2maven/transport/MavenArtifactDownloadProvider.java @@ -154,7 +154,7 @@ public IStatus downloadArtifact(URI source, OutputStream target, IArtifactDescri if (path != null) { String content = Files.readString(path); if (entry.getValue().equals(content)) { -// checksumMatch = true; + checksumMatch = true; break; } // checksum mismatch no need to further bother maven for this file