Skip to content

Commit 9249b78

Browse files
author
Matthew Fisher
committed
fix(builder): avoid issues with non-string release values
1 parent aecbc11 commit 9249b78

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

builder/image/get-app-values.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@ func main() {
3535
values := release["values"].(map[string]interface{})
3636

3737
for k, v := range values {
38-
fmt.Print(" -e " + k + "=\"" + v.(string) + "\"")
38+
fmt.Printf(" -e %s=\"%v\"", k, v)
3939
}
4040
}

0 commit comments

Comments
 (0)