fix(helm): suprress info message for 'helm inspect'

There was an informational message being printed that is unnecessary,
but prevented shell scripting the results of inspect calls.

Closes #1574
pull/1685/head
Matt Butcher 8 years ago
parent 736d9f8c43
commit fc9cb126e5
No known key found for this signature in database
GPG Key ID: DCD5F5E5EF32C345

@ -346,7 +346,9 @@ func locateChartPath(name, version string, verify bool, keyring string) (string,
if err != nil {
return filename, err
}
fmt.Printf("Fetched %s to %s\n", name, filename)
if flagDebug {
fmt.Printf("Fetched %s to %s\n", name, filename)
}
return lname, nil
} else if flagDebug {
return filename, err

Loading…
Cancel
Save