From 6f5b13e16cfbf663d13986c8417172fca2dae95f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christoph=20Schw=C3=A4gerl?= Date: Tue, 27 Feb 2024 16:07:42 +0100 Subject: [PATCH] revert isEquivalent undo --- pkg/module/oci_repo.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/module/oci_repo.go b/pkg/module/oci_repo.go index 53864fd9f..bdeaf98b9 100644 --- a/pkg/module/oci_repo.go +++ b/pkg/module/oci_repo.go @@ -90,7 +90,7 @@ func (r *OciRepo) DescriptorResourcesAreEquivalent(archive *comparch.ComponentAr if remoteAccessLocalReference[7:] != localAccessObject.LocalReference[7:] { return false } - } else if res.Equivalent(&localResource).IsEquivalent() { + } else if isEquivalent(&res, &localResource) { return false } }