mirror of
https://github.com/aptly-dev/aptly.git
synced 2026-07-15 11:57:59 +00:00
system test unexpected string fix (would be helpful, but not changing the test just for this)
This commit is contained in:
@@ -1,7 +1,6 @@
|
|||||||
package cmd
|
package cmd
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/aptly-dev/aptly/pgp"
|
"github.com/aptly-dev/aptly/pgp"
|
||||||
@@ -26,9 +25,6 @@ func getSigner(flags *flag.FlagSet) (pgp.Signer, error) {
|
|||||||
gpgKeys = context.Config().GpgKeys
|
gpgKeys = context.Config().GpgKeys
|
||||||
}
|
}
|
||||||
|
|
||||||
if len(gpgKeys) > 0 {
|
|
||||||
fmt.Printf("Signing with following gpg keys %s\n", strings.Join(gpgKeys, ", "))
|
|
||||||
}
|
|
||||||
for _, gpgKey := range gpgKeys {
|
for _, gpgKey := range gpgKeys {
|
||||||
signer.SetKey(gpgKey)
|
signer.SetKey(gpgKey)
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user