From a261819183c9f9b7a76a8e9e278b30486aa1fe2c Mon Sep 17 00:00:00 2001 From: Paul Holzinger Date: Thu, 15 Oct 2020 11:11:48 +0200 Subject: Fix podman image trust show --raw output Signed-off-by: Paul Holzinger --- cmd/podman/images/trust_show.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cmd/podman') diff --git a/cmd/podman/images/trust_show.go b/cmd/podman/images/trust_show.go index d968f6d80..d1f85d34d 100644 --- a/cmd/podman/images/trust_show.go +++ b/cmd/podman/images/trust_show.go @@ -49,7 +49,7 @@ func showTrust(cmd *cobra.Command, args []string) error { return err } if showTrustOptions.Raw { - fmt.Println(report.Raw) + fmt.Println(string(report.Raw)) return nil } if showTrustOptions.JSON { -- cgit v1.2.3-54-g00ecf