From cc0b0f21c407b3b6f8681d6f1583541e3c6c2601 Mon Sep 17 00:00:00 2001 From: James Sheppard Date: Sun, 7 May 2023 16:37:22 +0000 Subject: [PATCH] replace github.com/pkg/errors with std lib errors pkg Signed-off-by: James Sheppard --- cmd/helm/repo_list.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/helm/repo_list.go b/cmd/helm/repo_list.go index c9b952fee..6ab374bdb 100644 --- a/cmd/helm/repo_list.go +++ b/cmd/helm/repo_list.go @@ -17,11 +17,11 @@ limitations under the License. package main import ( + "errors" "fmt" "io" "github.com/gosuri/uitable" - "github.com/pkg/errors" "github.com/spf13/cobra" "helm.sh/helm/v3/cmd/helm/require"