From 0311be56cf98844882c78222d60a4c4b7f4b9cbc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marko=20Mudrini=C4=87?= Date: Thu, 6 Nov 2025 16:05:40 +0100 Subject: [PATCH] Add debug output for sync-tags MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit On-behalf-of: @SAP marko.mudrinic@sap.com Signed-off-by: Marko Mudrinić --- cmd/sync-tags/gomod.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmd/sync-tags/gomod.go b/cmd/sync-tags/gomod.go index a6782aad..ec34bf6c 100644 --- a/cmd/sync-tags/gomod.go +++ b/cmd/sync-tags/gomod.go @@ -43,6 +43,8 @@ func updateGomodWithTaggedDependencies(searchTag string, depsRepo []string, semv return changed, err } + fmt.Println("Found the following dependencies to update:", depPackages) + for _, dep := range depsRepo { depPath := filepath.Join("..", dep) dr, err := gogit.PlainOpen(depPath)