Merge pull request #1685 from technosophos/fix/1574-fetch-output

fix(helm): suprress info message for 'helm inspect'
pull/1691/head
Matt Butcher 9 years ago committed by GitHub
commit 40396d6799

@ -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