cmd: preserve exact bytes when displaying template/system layers (#7586)

This commit is contained in:
Blake Mizerany 2024-11-13 23:53:30 -08:00 committed by GitHub
parent d7eb05b936
commit 67691e410d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -800,9 +800,9 @@ func ShowHandler(cmd *cobra.Command, args []string) error {
case "parameters": case "parameters":
fmt.Println(resp.Parameters) fmt.Println(resp.Parameters)
case "system": case "system":
fmt.Println(resp.System) fmt.Print(resp.System)
case "template": case "template":
fmt.Println(resp.Template) fmt.Print(resp.Template)
} }
return nil return nil