From 580cf6e02d179e3c372deefc5c83703dcb43182f Mon Sep 17 00:00:00 2001 From: Jacob LeGrone Date: Fri, 15 Feb 2019 13:23:03 -0500 Subject: [PATCH] Include chart name and version in string representation Signed-off-by: Jacob LeGrone --- pkg/chart/chart.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/chart/chart.go b/pkg/chart/chart.go index 1af74c10..b84fb3ac 100644 --- a/pkg/chart/chart.go +++ b/pkg/chart/chart.go @@ -149,7 +149,7 @@ func (c *Chart) Path() string { } func (c *Chart) String() string { - return c.Path() + return fmt.Sprintf("%s (version: %s, path: %s)", c.yaml.Name, c.yaml.Version, c.Path()) } // ValuesFilePathsForCI returns all file paths in the 'ci' subfolder of the chart directory matching the pattern '*-values.yaml'