diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-03-26 18:11:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-26 18:11:38 +0100 |
commit | 4f38509b6c8366e1093968833e2342b5b65311c5 (patch) | |
tree | 299b90de83112d133e56c85ee4c9d002aa29f056 /cmd/podmanV2/images/images.go | |
parent | 8cccac54979b804d1086ff42654de07dba802a2e (diff) | |
parent | f38a26bfa0621e06ad8401ded3e10d7ea834819e (diff) | |
download | podman-4f38509b6c8366e1093968833e2342b5b65311c5.tar.gz podman-4f38509b6c8366e1093968833e2342b5b65311c5.tar.bz2 podman-4f38509b6c8366e1093968833e2342b5b65311c5.zip |
Merge pull request #5615 from jwhonce/wip/images
V2 podman image rm | podman rmi [IMAGE]
Diffstat (limited to 'cmd/podmanV2/images/images.go')
-rw-r--r-- | cmd/podmanV2/images/images.go | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/cmd/podmanV2/images/images.go b/cmd/podmanV2/images/images.go index 719846b4c..f248aa65f 100644 --- a/cmd/podmanV2/images/images.go +++ b/cmd/podmanV2/images/images.go @@ -11,13 +11,13 @@ import ( var ( // podman _images_ Alias for podman image _list_ imagesCmd = &cobra.Command{ - Use: strings.Replace(listCmd.Use, "list", "images", 1), - Args: listCmd.Args, - Short: listCmd.Short, - Long: listCmd.Long, - PersistentPreRunE: preRunE, - RunE: listCmd.RunE, - Example: strings.Replace(listCmd.Example, "podman image list", "podman images", -1), + Use: strings.Replace(listCmd.Use, "list", "images", 1), + Args: listCmd.Args, + Short: listCmd.Short, + Long: listCmd.Long, + PreRunE: listCmd.PreRunE, + RunE: listCmd.RunE, + Example: strings.Replace(listCmd.Example, "podman image list", "podman images", -1), } ) |