Unverified Commit 67691e41 authored by Blake Mizerany's avatar Blake Mizerany Committed by GitHub
Browse files

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

parent d7eb05b9
...@@ -800,9 +800,9 @@ func ShowHandler(cmd *cobra.Command, args []string) error { ...@@ -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
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment