Skip to content

Commit

Permalink
fix(version): fix castemplate output runstask names
Browse files Browse the repository at this point in the history
Signed-off-by: shubham <shubham.bajpai@mayadata.io>
  • Loading branch information
shubham14bajpai authored and kmova committed Jul 21, 2020
1 parent c27cc27 commit 375ef3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ func WithSuffixLower(given string) (suffixed string) {
// succeeds
func WithSuffixIf(given string, p func(string) bool) (suffixed string) {
if p(given) {
return WithSuffix(given)
return WithSuffixLower(given)
}
return given
}
Expand Down

0 comments on commit 375ef3b

Please sign in to comment.