We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15f76cf commit adeb4caCopy full SHA for adeb4ca
pkg/downloader/manager.go
@@ -246,7 +246,7 @@ func (m *Manager) downloadAll(deps []*chart.Dependency) error {
246
}
247
248
destPath := filepath.Join(m.ChartPath, "charts")
249
- tmpPath := filepath.Join(m.ChartPath, "tmpcharts")
+ tmpPath := filepath.Join(m.ChartPath, fmt.Sprintf("tmpcharts-%d", os.Getpid()))
250
251
// Check if 'charts' directory is not actually a directory. If it does not exist, create it.
252
if fi, err := os.Stat(destPath); err == nil {
0 commit comments