From e039c671c468d6873a860e7bf8fbd2af6e4e0de0 Mon Sep 17 00:00:00 2001 From: Arash Deshmeh Date: Sat, 24 Mar 2018 06:30:55 -0400 Subject: [PATCH] fix(helm): fix golint warning due to ApiVersionV1 constant name Signed-off-by: Arash Deshmeh --- pkg/chartutil/chartfile.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/chartutil/chartfile.go b/pkg/chartutil/chartfile.go index 9897d66ff..c2879cdae 100644 --- a/pkg/chartutil/chartfile.go +++ b/pkg/chartutil/chartfile.go @@ -31,7 +31,7 @@ import ( // ApiVersionV1 is the API version number for version 1. // // This is ApiVersionV1 instead of APIVersionV1 to match the protobuf-generated name. -const ApiVersionV1 = "v1" +const ApiVersionV1 = "v1" // nolint // UnmarshalChartfile takes raw Chart.yaml data and unmarshals it. func UnmarshalChartfile(data []byte) (*chart.Metadata, error) {