Pass --keep-history when so instructed [#24]

This commit is contained in:
Erin Call
2020-01-02 10:58:58 -08:00
parent 7d750f097d
commit 17724e7015
7 changed files with 32 additions and 7 deletions

View File

@@ -120,8 +120,9 @@ var uninstall = func(cfg Config) []Step {
steps = append(steps, depUpdate(cfg)...)
}
steps = append(steps, &run.Uninstall{
Release: cfg.Release,
DryRun: cfg.DryRun,
Release: cfg.Release,
DryRun: cfg.DryRun,
KeepHistory: cfg.KeepHistory,
})
return steps