Merge pull request #5762 from baude/v2versionformat

podmanv2 version format variable name change
This commit is contained in:
OpenShift Merge Robot
2020-04-13 22:44:17 +02:00
committed by GitHub

View File

@ -24,7 +24,7 @@ var (
RunE: version,
PersistentPreRunE: preRunE,
}
format string
versionFormat string
)
type versionStruct struct {
@ -38,7 +38,7 @@ func init() {
Command: versionCommand,
})
flags := versionCommand.Flags()
flags.StringVarP(&format, "format", "f", "", "Change the output format to JSON or a Go template")
flags.StringVarP(&versionFormat, "format", "f", "", "Change the output format to JSON or a Go template")
}
func version(cmd *cobra.Command, args []string) error {
@ -62,7 +62,7 @@ func version(cmd *cobra.Command, args []string) error {
v.Server = v.Client
//}
versionOutputFormat := format
versionOutputFormat := versionFormat
if versionOutputFormat != "" {
if strings.Join(strings.Fields(versionOutputFormat), "") == "{{json.}}" {
versionOutputFormat = formats.JSONString