From 774eb1d1a9f43ede92b6b6eaca6b28059ef99d64 Mon Sep 17 00:00:00 2001 From: Dominik Schulz Date: Fri, 15 Jan 2021 23:20:54 +0100 Subject: [PATCH] Provide a hint to remove unknown recipients (#1714) Fixes #1701 RELEASE_NOTES=n/a Signed-off-by: Dominik Schulz --- internal/action/recipients.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/action/recipients.go b/internal/action/recipients.go index 97829836b8..d493869699 100644 --- a/internal/action/recipients.go +++ b/internal/action/recipients.go @@ -168,6 +168,7 @@ func (s *Action) RecipientsRemove(c *cli.Context) error { keys, err := crypto.FindRecipients(ctx, r) if err != nil { out.Cyan(ctx, "WARNING: Failed to list public key '%s': %s", r, err) + out.Yellow(ctx, "Hint: You can use `--force` to remove unknown keys.") if !force { continue }