Fix regression on template failing due to duplicate fetch target (#1395)
This fixes a regression introduced in #1388 Fixes #1394
This commit is contained in:
parent
85a2024669
commit
cc9b7f3942
|
|
@ -890,7 +890,7 @@ func (st *HelmState) PrepareCharts(helm helmexec.Interface, dir string, concurre
|
||||||
fetchFlags = append(fetchFlags, "--version", release.Version)
|
fetchFlags = append(fetchFlags, "--version", release.Version)
|
||||||
}
|
}
|
||||||
|
|
||||||
pathElems = append(pathElems, chartVersion, release.Chart)
|
pathElems = append(pathElems, release.Name, release.Chart, chartVersion)
|
||||||
|
|
||||||
chartPath = path.Join(pathElems...)
|
chartPath = path.Join(pathElems...)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue