system test unexpected string fix (would be helpful, but not changing the test just for this)

This commit is contained in:
Ales Bregar
2025-08-11 12:20:52 +02:00
committed by André Roth
parent 4ba4c0cba6
commit 8e739524b0

View File

@@ -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)
}