diff options
author | Parker Van Roy <pvanroy@redhat.com> | 2020-10-08 14:55:44 -0400 |
---|---|---|
committer | Parker Van Roy <pvanroy@redhat.com> | 2020-10-08 14:55:44 -0400 |
commit | c254a73d63fe565665cf0f2b475e6fe9926c9e73 (patch) | |
tree | cab82d3dad1a4efdfb2c52f9bfee3536eb9edf74 /cmd/podman/images | |
parent | 59b5f0ac32ddf615fada021bc62c823bb73233da (diff) | |
download | podman-c254a73d63fe565665cf0f2b475e6fe9926c9e73.tar.gz podman-c254a73d63fe565665cf0f2b475e6fe9926c9e73.tar.bz2 podman-c254a73d63fe565665cf0f2b475e6fe9926c9e73.zip |
--format updates for images/diff.go
Signed-off-by: Parker Van Roy <pvanroy@redhat.com>
Diffstat (limited to 'cmd/podman/images')
-rw-r--r-- | cmd/podman/images/diff.go | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/cmd/podman/images/diff.go b/cmd/podman/images/diff.go index 26147345e..05a05fa04 100644 --- a/cmd/podman/images/diff.go +++ b/cmd/podman/images/diff.go @@ -1,6 +1,7 @@ package images import ( + "github.com/containers/podman/v2/cmd/podman/parse" "github.com/containers/podman/v2/cmd/podman/registry" "github.com/containers/podman/v2/cmd/podman/report" "github.com/containers/podman/v2/pkg/domain/entities" @@ -49,11 +50,11 @@ func diff(cmd *cobra.Command, args []string) error { return err } - switch diffOpts.Format { - case "": - return report.ChangesToTable(results) - case "json": + switch { + case parse.MatchesJSONFormat(diffOpts.Format): return report.ChangesToJSON(results) + case diffOpts.Format == "": + return report.ChangesToTable(results) default: return errors.New("only supported value for '--format' is 'json'") } |