diff options
author | baude <bbaude@redhat.com> | 2019-02-20 13:46:41 -0600 |
---|---|---|
committer | baude <bbaude@redhat.com> | 2019-02-22 14:13:08 -0600 |
commit | 328250e7bef56b0b69dbea124c1170abd289900f (patch) | |
tree | 03a9d601d3f3ce0ac0d04fc3b2841b970031ed48 /cmd/podman/utils.go | |
parent | 8039ccf4d560acbc308066cf8996bc4e6167a4a9 (diff) | |
download | podman-328250e7bef56b0b69dbea124c1170abd289900f.tar.gz podman-328250e7bef56b0b69dbea124c1170abd289900f.tar.bz2 podman-328250e7bef56b0b69dbea124c1170abd289900f.zip |
Improve command line validation
Use the checkallandlatest function to validate flag usage as part
of the cobra command args validation.
Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'cmd/podman/utils.go')
-rw-r--r-- | cmd/podman/utils.go | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/cmd/podman/utils.go b/cmd/podman/utils.go index c76e7f2a4..88ac62304 100644 --- a/cmd/podman/utils.go +++ b/cmd/podman/utils.go @@ -158,13 +158,6 @@ func (f *RawTtyFormatter) Format(entry *logrus.Entry) ([]byte, error) { return bytes, err } -func checkMutuallyExclusiveFlags(c *cliconfig.PodmanCommand) error { - if err := checkAllAndLatest(c); err != nil { - return err - } - return nil -} - // For pod commands that have a latest and all flag, getPodsFromContext gets // pods the user specifies. If there's an error before getting pods, the pods slice // will be empty and error will be not nil. If an error occured after, the pod slice |