Merge pull request #2206 from stevvooe/images-alias

cmd/ctr/images: add `i` alias for images command
This commit is contained in:
Kenfe-Mickaël Laventure 2018-03-13 06:27:36 -07:00 committed by GitHub
commit 6b0109942f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -36,7 +36,7 @@ import (
// Command is the cli command for managing images // Command is the cli command for managing images
var Command = cli.Command{ var Command = cli.Command{
Name: "images", Name: "images",
Aliases: []string{"image"}, Aliases: []string{"image", "i"},
Usage: "manage images", Usage: "manage images",
Subcommands: cli.Commands{ Subcommands: cli.Commands{
checkCommand, checkCommand,