Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/Praqma/Helmsman
Browse files Browse the repository at this point in the history
  • Loading branch information
Sami Alajrami committed May 2, 2018
2 parents 63c9e84 + adf5fe6 commit 2ec49fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion helm_helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ func getTillerReleases(tillerNS string) string {
lines := strings.Split(result, "\n")
for i, l := range lines {
if l != "" && !strings.HasPrefix(l, "NAME") && !strings.HasSuffix(l, "NAMESPACE") {
lines[i] = strings.TrimSuffix(l, "\n") + tillerNS
lines[i] = strings.TrimSuffix(l, "\n") + " " + tillerNS
}
}
return strings.Join(lines, "\n")
Expand Down

0 comments on commit 2ec49fb

Please sign in to comment.