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/system/version.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/system/version.go')
-rw-r--r-- | cmd/podman/system/version.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd/podman/system/version.go b/cmd/podman/system/version.go index 5d3874de3..b0f4eb528 100644 --- a/cmd/podman/system/version.go +++ b/cmd/podman/system/version.go @@ -9,6 +9,7 @@ import ( "time" "github.com/containers/buildah/pkg/formats" + "github.com/containers/libpod/cmd/podman/common" "github.com/containers/libpod/cmd/podman/registry" "github.com/containers/libpod/libpod/define" "github.com/containers/libpod/pkg/domain/entities" @@ -19,7 +20,7 @@ import ( var ( versionCommand = &cobra.Command{ Use: "version", - Args: cobra.NoArgs, + Args: common.NoArgs, Short: "Display the Podman Version Information", RunE: version, Annotations: map[string]string{ |