From f38958d6d7dd8e6dc9320a4e2d20a5e0e4611232 Mon Sep 17 00:00:00 2001 From: Quan TRAN Date: Thu, 13 May 2021 02:00:43 +0200 Subject: [PATCH] Fix cache path issue on Windows (#1846) --- pkg/state/helmx.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/state/helmx.go b/pkg/state/helmx.go index 56c87361..3dcc7872 100644 --- a/pkg/state/helmx.go +++ b/pkg/state/helmx.go @@ -52,7 +52,7 @@ func (st *HelmState) downloadChartWithGoGetter(r *ReleaseSpec) (string, error) { pathElems = append(pathElems, r.KubeContext) } - pathElems = append(pathElems, r.Name, r.Chart) + pathElems = append(pathElems, r.Name) cacheDir := filepath.Join(pathElems...)