diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-04-28 23:29:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-28 23:29:20 +0200 |
commit | bf4efc1953467907ae7d75d5f3ef3cd41505ee24 (patch) | |
tree | f6743d64621b126ff5e5f92c46fa4e56d279f26b /cmd/podman/images/images.go | |
parent | dcac908bbe879a8b0b453531252dddccf8690077 (diff) | |
parent | 517bc28360ba6417d5333720f03f010514862ec3 (diff) | |
download | podman-bf4efc1953467907ae7d75d5f3ef3cd41505ee24.tar.gz podman-bf4efc1953467907ae7d75d5f3ef3cd41505ee24.tar.bz2 podman-bf4efc1953467907ae7d75d5f3ef3cd41505ee24.zip |
Merge pull request #6026 from baude/v2forcesystemtests
system tests must pass
Diffstat (limited to 'cmd/podman/images/images.go')
-rw-r--r-- | cmd/podman/images/images.go | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/cmd/podman/images/images.go b/cmd/podman/images/images.go index fd3ede26a..96ef344bf 100644 --- a/cmd/podman/images/images.go +++ b/cmd/podman/images/images.go @@ -11,12 +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, - 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, + RunE: listCmd.RunE, + Example: strings.Replace(listCmd.Example, "podman image list", "podman images", -1), + DisableFlagsInUseLine: true, } ) |