Explorar el Código

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

Blake Mizerany hace 5 meses
padre
commit
67691e410d
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      cmd/cmd.go

+ 2 - 2
cmd/cmd.go

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