From 517bc28360ba6417d5333720f03f010514862ec3 Mon Sep 17 00:00:00 2001 From: Brent Baude Date: Tue, 28 Apr 2020 14:26:43 -0500 Subject: system tests must pass Signed-off-by: Brent Baude --- cmd/podman/common/util.go | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'cmd/podman/common/util.go') diff --git a/cmd/podman/common/util.go b/cmd/podman/common/util.go index 47bbe12fa..5b99b8398 100644 --- a/cmd/podman/common/util.go +++ b/cmd/podman/common/util.go @@ -1,8 +1,11 @@ package common import ( + "fmt" "strconv" + "github.com/spf13/cobra" + "github.com/cri-o/ocicni/pkg/ocicni" "github.com/docker/go-connections/nat" "github.com/pkg/errors" @@ -41,3 +44,11 @@ func createPortBindings(ports []string) ([]ocicni.PortMapping, error) { } return portBindings, nil } + +// NoArgs returns an error if any args are included. +func NoArgs(cmd *cobra.Command, args []string) error { + if len(args) > 0 { + return fmt.Errorf("`%s` takes no arguments", cmd.CommandPath()) + } + return nil +} -- cgit v1.2.3-54-g00ecf