Skip to content

Commit

Permalink
Include chart name and version in string representation
Browse files Browse the repository at this point in the history
Signed-off-by: Jacob LeGrone <[email protected]>
  • Loading branch information
jlegrone committed Feb 15, 2019
1 parent 91c3939 commit 3475930
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/chart/chart.go
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 3475930

Please sign in to comment.