From 58480d747f8bb563e47f868e38add7d053536ca0 Mon Sep 17 00:00:00 2001 From: Ales Bregar Date: Mon, 11 Aug 2025 12:20:52 +0200 Subject: [PATCH] system test unexpected string fix (would be helpful, but not changing the test just for this) --- cmd/publish.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/cmd/publish.go b/cmd/publish.go index 70b65e34..6f4904ad 100644 --- a/cmd/publish.go +++ b/cmd/publish.go @@ -1,7 +1,6 @@ package cmd import ( - "fmt" "strings" "github.com/aptly-dev/aptly/pgp" @@ -26,9 +25,6 @@ func getSigner(flags *flag.FlagSet) (pgp.Signer, error) { gpgKeys = context.Config().GpgKeys } - if len(gpgKeys) > 0 { - fmt.Printf("Signing with following gpg keys %s\n", strings.Join(gpgKeys, ", ")) - } for _, gpgKey := range gpgKeys { signer.SetKey(gpgKey) }