From 9d44cfa89d7d617b16b4da095504c31279caef53 Mon Sep 17 00:00:00 2001 From: Sebastien Plisson Date: Fri, 8 Jun 2018 10:18:25 -0700 Subject: [PATCH] Fix res => resp --- cmd/helm/install.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/helm/install.go b/cmd/helm/install.go index 60479064b..38df433b8 100644 --- a/cmd/helm/install.go +++ b/cmd/helm/install.go @@ -301,8 +301,8 @@ func (i *installCmd) run() error { // If this is a dry run, we can't display status. if i.dryRun { // This is special casing to avoid breaking backward compatibility: - if res.Release.Info.Description != "Dry run complete" { - fmt.Fprintf(os.Stdout, "WARNING: %s\n", res.Release.Info.Description) + if resp.Release.Info.Description != "Dry run complete" { + fmt.Fprintf(os.Stdout, "WARNING: %s\n", resp.Release.Info.Description) } return nil }