diff --git a/pkg/action/install.go b/pkg/action/install.go index f04c42730..a1b3f99c7 100644 --- a/pkg/action/install.go +++ b/pkg/action/install.go @@ -79,7 +79,7 @@ type Install struct { ReleaseName string GenerateName bool NameTemplate string - Description string + Description string OutputDir string Atomic bool SkipCRDs bool @@ -295,7 +295,7 @@ func (i *Install) Run(chrt *chart.Chart, vals map[string]interface{}) (*release. if len(i.Description) > 0 { rel.SetStatus(release.StatusDeployed, i.Description) - }else{ + } else { rel.SetStatus(release.StatusDeployed, "Install complete") } diff --git a/pkg/action/uninstall.go b/pkg/action/uninstall.go index 7308e8f8c..dfaa98472 100644 --- a/pkg/action/uninstall.go +++ b/pkg/action/uninstall.go @@ -121,7 +121,7 @@ func (u *Uninstall) Run(name string) (*release.UninstallReleaseResponse, error) rel.Info.Status = release.StatusUninstalled if len(u.Description) > 0 { rel.Info.Description = u.Description - }else{ + } else { rel.Info.Description = "Uninstallation complete" }