Merge pull request #2850 from rocky-nupt/fix-update-delete-subcharts

Fix(helm): Fix the bug of dependency update deleting subcharts
pull/2874/head
Justin Scott 7 years ago committed by GitHub
commit 8befd50c12

@ -264,6 +264,9 @@ func (m *Manager) downloadAll(deps []*chartutil.Dependency) error {
return err
}
}
if err := move(tmpPath, destPath); err != nil {
return err
}
if err := os.RemoveAll(tmpPath); err != nil {
return fmt.Errorf("Failed to remove %v: %v", tmpPath, err)
}
@ -610,3 +613,17 @@ func tarFromLocalDir(chartpath string, name string, repo string, version string)
return "", fmt.Errorf("can't get a valid version for dependency %s", name)
}
// move files from tmppath to destpath
func move(tmpPath, destPath string) error {
files, _ := ioutil.ReadDir(tmpPath)
for _, file := range files {
filename := file.Name()
tmpfile := filepath.Join(tmpPath, filename)
destfile := filepath.Join(destPath, filename)
if err := os.Rename(tmpfile, destfile); err != nil {
return fmt.Errorf("Unable to move local charts to charts dir: %v", err)
}
}
return nil
}

Loading…
Cancel
Save