From 13506b57bb89c38cfba1450c67cfba2b30bdf187 Mon Sep 17 00:00:00 2001 From: James Sheppard Date: Sun, 7 May 2023 16:20:50 +0000 Subject: [PATCH] use errors pkg from std lib for lint.go Signed-off-by: James Sheppard --- cmd/helm/lint.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/helm/lint.go b/cmd/helm/lint.go index 73a37b6fe..4335e51eb 100644 --- a/cmd/helm/lint.go +++ b/cmd/helm/lint.go @@ -17,13 +17,13 @@ limitations under the License. package main import ( + "errors" "fmt" "io" "os" "path/filepath" "strings" - "github.com/pkg/errors" "github.com/spf13/cobra" "helm.sh/helm/v3/pkg/action"