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
parent 736d9f8c
......@@ -346,7 +346,9 @@ func locateChartPath(name, version string, verify bool, keyring string) (string,
if err != nil {
return filename, err
}
if flagDebug {
fmt.Printf("Fetched %s to %s\n", name, filename)
}
return lname, nil
} else if flagDebug {
return filename, err
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment