Skip to content

Commit

Permalink
fixing charts validation not allowing the use of older chart versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
Sami Alajrami committed Apr 4, 2018
1 parent 538e6b5 commit f0d8f70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ func validateReleaseCharts(apps map[string]*release) (bool, string) {
for app, r := range apps {
cmd := command{
Cmd: "bash",
Args: []string{"-c", "helm search " + r.Chart + " --version " + " -l"},
Args: []string{"-c", "helm search " + r.Chart + " --version " + r.Version + " -l"},
Description: "validating if chart " + r.Chart + "-" + r.Version + " is available in the defined repos.",
}

Expand Down

0 comments on commit f0d8f70

Please sign in to comment.