diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-05-26 14:27:24 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-26 14:27:24 -0400 |
commit | 49ef9eb52ae45c6fd835d7b3de79dd06d55caa0b (patch) | |
tree | 598cd570033912ef59037926019896bf0f6d4eac /cmd/podman/pods/start.go | |
parent | 5f097c371f6ea13829b70a0a508464e57027bc8b (diff) | |
parent | 426a07e7008f539825abe74484296cfaf4399ad8 (diff) | |
download | podman-49ef9eb52ae45c6fd835d7b3de79dd06d55caa0b.tar.gz podman-49ef9eb52ae45c6fd835d7b3de79dd06d55caa0b.tar.bz2 podman-49ef9eb52ae45c6fd835d7b3de79dd06d55caa0b.zip |
Merge pull request #14374 from umohnani8/todo-3
Combine the CheckAllLatest CID and PodID functions
Diffstat (limited to 'cmd/podman/pods/start.go')
-rw-r--r-- | cmd/podman/pods/start.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/pods/start.go b/cmd/podman/pods/start.go index b668cdd61..9436d34a5 100644 --- a/cmd/podman/pods/start.go +++ b/cmd/podman/pods/start.go @@ -31,7 +31,7 @@ var ( Long: podStartDescription, RunE: start, Args: func(cmd *cobra.Command, args []string) error { - return validate.CheckAllLatestAndPodIDFile(cmd, args, false, true) + return validate.CheckAllLatestAndIDFile(cmd, args, false, "pod-id-file") }, ValidArgsFunction: common.AutocompletePods, Example: `podman pod start podID |