Skip to content

Commit

Permalink
Attempt to use escaping option values to work around helm/helm#1707
Browse files Browse the repository at this point in the history
  • Loading branch information
ravishivt committed Apr 25, 2017
1 parent 36bde6a commit 0fc2bf2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/io/estrado/Pipeline.groovy
Expand Up @@ -165,7 +165,7 @@ def getHelmReleaseOverrides(Map map=[:]) {
// jenkins and workflow restriction force this function instead of map.each(): https://issues.jenkins-ci.org/browse/JENKINS-27421
def options = ""
map.each { key, value ->
options += "$key=$value,"
options += "$key=\"$value\","
}

return options
Expand Down

0 comments on commit 0fc2bf2

Please sign in to comment.