fix(cli): fix 'helm doctor'

Rather than remove 'helm doctor' for MVP, I just fixed the one small bug
that was preventing it from working.
pull/518/head
Matt Butcher 9 years ago
parent 0839db2ca1
commit 677df72dda

@ -42,7 +42,7 @@ func doctor(c *cli.Context) error {
if client.IsInstalled(runner) {
format.Success("You have everything you need. Go forth my friend!")
} else {
format.Warning("Looks like you don't have DM installed.\nRun: `helm install`")
format.Warning("Looks like you don't have DM installed.\nRun: `helm server install`")
}
return nil

@ -34,7 +34,7 @@ func (r RealRunner) GetByKind(kind, name, ns string) (string, error) {
args := []string{"get", kind}
if name != "" {
args = append([]string{name}, args...)
args = append(args, name)
}
if ns != "" {

Loading…
Cancel
Save