diff --git a/pkg/conversion/meta.go b/pkg/conversion/meta.go index ce16ea79022..44ba29af67f 100644 --- a/pkg/conversion/meta.go +++ b/pkg/conversion/meta.go @@ -59,7 +59,7 @@ func (SimpleMetaFactory) Interpret(data []byte) (version, kind string, err error }{} err = json.Unmarshal(data, &findKind) if err != nil { - return "", "", fmt.Errorf("couldn't get version/kind: %v", err) + return "", "", fmt.Errorf("couldn't get version/kind; json parse error: %v", err) } return findKind.APIVersion, findKind.Kind, nil }