pull/2561/merge
Bhargav Nookala 8 years ago committed by GitHub
commit ee5b129175

@ -258,6 +258,12 @@ func (i *installCmd) run() error {
// If this is a dry run, we can't display status. // If this is a dry run, we can't display status.
if i.dryRun { if i.dryRun {
// If this is a dry run, we should delete the compiled chart tarball to remain idempotent.
debug("Dry run: removing compiled chart: %s\n", i.chartPath)
err := os.Remove(i.chartPath)
if err != nil {
prettyError(err)
}
return nil return nil
} }

Loading…
Cancel
Save