From 3a511168818e3c5441d4eb0eef50918eaa081997 Mon Sep 17 00:00:00 2001 From: Andrey Smirnov Date: Fri, 7 Feb 2014 02:07:41 +0400 Subject: [PATCH] Use better words. --- utils/gpg.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/gpg.go b/utils/gpg.go index bb637c25..360f51a9 100644 --- a/utils/gpg.go +++ b/utils/gpg.go @@ -97,8 +97,8 @@ func (g *GpgVerifier) InitKeyring() error { // using default keyring output, err := exec.Command("gpg", "--no-default-keyring", "--keyring", "trustedkeys.gpg", "--list-keys").Output() if err == nil && len(output) == 0 { - fmt.Printf("\nLooks like your keyring with trusted keys is empty. You might want to consider importing some keys.\n") - fmt.Printf("If you're running Debian or Ubuntu, you might consider importing current archive keys by running:\n\n") + fmt.Printf("\nLooks like your keyring with trusted keys is empty. You might consider importing some keys.\n") + fmt.Printf("If you're running Debian or Ubuntu, it's a good idea to import current archive keys by running:\n\n") fmt.Printf(" gpg --keyring /usr/share/keyrings/debian-archive-keyring.gpg --export | gpg --no-default-keyring --keyring trustedkeys.gpg --import\n") fmt.Printf("\n(for Ubuntu, use /usr/share/keyrings/ubuntu-archive-keyring.gpg)\n\n") }