From 72c0b938c7867995c99c836089fc2bbcef3983b6 Mon Sep 17 00:00:00 2001 From: Ahmet Alp Balkan Date: Mon, 21 Sep 2020 10:57:22 -0700 Subject: [PATCH] tweak uninstall cmd message Uninstall messages can look odd with custom indexes allowing generic names: Uninstalled plugin use Uninstalled plugin build So using a colon to separate it out like the "install" cmd. Signed-off-by: Ahmet Alp Balkan --- cmd/krew/cmd/uninstall.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/krew/cmd/uninstall.go b/cmd/krew/cmd/uninstall.go index fa9f1534..59dff79b 100644 --- a/cmd/krew/cmd/uninstall.go +++ b/cmd/krew/cmd/uninstall.go @@ -48,7 +48,7 @@ Remarks: if err := installation.Uninstall(paths, name); err != nil { return errors.Wrapf(err, "failed to uninstall plugin %s", name) } - fmt.Fprintf(os.Stderr, "Uninstalled plugin %s\n", name) + fmt.Fprintf(os.Stderr, "Uninstalled plugin: %s\n", name) } return nil },