diff options
author | Brent Baude <bbaude@redhat.com> | 2020-04-28 14:26:43 -0500 |
---|---|---|
committer | Brent Baude <bbaude@redhat.com> | 2020-04-28 15:17:00 -0500 |
commit | 517bc28360ba6417d5333720f03f010514862ec3 (patch) | |
tree | 0bd8db7e573aad64d2687f047e6606e8c8df77f0 /cmd/podman/images/images.go | |
parent | 23be7b50490ac01c31af3266490276dd46ec23c3 (diff) | |
download | podman-517bc28360ba6417d5333720f03f010514862ec3.tar.gz podman-517bc28360ba6417d5333720f03f010514862ec3.tar.bz2 podman-517bc28360ba6417d5333720f03f010514862ec3.zip |
system tests must pass
Signed-off-by: Brent Baude <bbaude@redhat.com>
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, } ) |