diff options
Diffstat (limited to 'cmd/podman/ps.go')
-rw-r--r-- | cmd/podman/ps.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cmd/podman/ps.go b/cmd/podman/ps.go index 002975b87..dd5bf0ff2 100644 --- a/cmd/podman/ps.go +++ b/cmd/podman/ps.go @@ -187,9 +187,8 @@ func init() { flags.StringVar(&psCommand.Sort, "sort", "created", "Sort output by command, created, id, image, names, runningfor, size, or status") flags.BoolVar(&psCommand.Sync, "sync", false, "Sync container state with OCI runtime") - rootCmd.AddCommand(psCommand.Command) - } + func psCmd(c *cliconfig.PsValues) error { var ( filterFuncs []libpod.ContainerFilter |