(args []string, client *action.Show)
| 212 | } |
| 213 | |
| 214 | func runShow(args []string, client *action.Show) (string, error) { |
| 215 | slog.Debug("original chart version", "version", client.Version) |
| 216 | if client.Version == "" && client.Devel { |
| 217 | slog.Debug("setting version to >0.0.0-0") |
| 218 | client.Version = ">0.0.0-0" |
| 219 | } |
| 220 | |
| 221 | cp, err := client.LocateChart(args[0], settings) |
| 222 | if err != nil { |
| 223 | return "", err |
| 224 | } |
| 225 | return client.Run(cp) |
| 226 | } |
| 227 | |
| 228 | func addRegistryClient(out io.Writer, client *action.Show) error { |
| 229 | registryClient, err := newRegistryClient(out, client.CertFile, client.KeyFile, client.CaFile, |
no test coverage detected
searching dependent graphs…