From ae11d8c64bde19c2173d9db6cb02efaf9a7f544e Mon Sep 17 00:00:00 2001 From: Stephen J Day Date: Mon, 12 Mar 2018 17:42:41 -0700 Subject: [PATCH] cmd/ctr/images: add `i` alias for images command Signed-off-by: Stephen J Day --- cmd/ctr/commands/images/images.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/ctr/commands/images/images.go b/cmd/ctr/commands/images/images.go index 361abf69f..7422eb4bd 100644 --- a/cmd/ctr/commands/images/images.go +++ b/cmd/ctr/commands/images/images.go @@ -36,7 +36,7 @@ import ( // Command is the cli command for managing images var Command = cli.Command{ Name: "images", - Aliases: []string{"image"}, + Aliases: []string{"image", "i"}, Usage: "manage images", Subcommands: cli.Commands{ checkCommand,