From ec9c02f6d325885acb2e36a9ccc36cb4ec72d6ad Mon Sep 17 00:00:00 2001 From: facchettos Date: Mon, 27 Nov 2023 11:16:36 +0100 Subject: [PATCH] removed useless var --- cmd/vclusterctl/cmd/helm_downloader.go | 1 - 1 file changed, 1 deletion(-) diff --git a/cmd/vclusterctl/cmd/helm_downloader.go b/cmd/vclusterctl/cmd/helm_downloader.go index 73a831e36c..e81e6bdf87 100644 --- a/cmd/vclusterctl/cmd/helm_downloader.go +++ b/cmd/vclusterctl/cmd/helm_downloader.go @@ -19,7 +19,6 @@ func GetHelmBinaryPath(ctx context.Context, log log.BaseLogger) (string, error) // test for helm helmExecutablePath, err := exec.LookPath("helm") if err != nil { - _ = fmt.Errorf("seems like helm is not installed. Helm is required for the creation of a virtual cluster") helmExecutablePath, err = downloader.NewDownloader(commands.NewHelmV3Command(), logger, cliconfig.VclusterFolder).EnsureCommand(ctx) if err != nil { return "", fmt.Errorf("error while installing helm: %w", err)