Fix cache path issue on Windows (#1846)

This commit is contained in:
Quan TRAN 2021-05-13 02:00:43 +02:00 committed by GitHub
parent 212e6acf23
commit f38958d6d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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...)