From 6cf80b22c574c7fa4e836d7472fcfe72c2879579 Mon Sep 17 00:00:00 2001 From: rmehra Date: Mon, 24 Apr 2017 17:15:45 -0700 Subject: [PATCH] 3 - Attempt to use escaping option values to work around https://github.com/kubernetes/helm/issues/1707 --- src/io/estrado/Pipeline.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/io/estrado/Pipeline.groovy b/src/io/estrado/Pipeline.groovy index 7bd0936..dc07daf 100644 --- a/src/io/estrado/Pipeline.groovy +++ b/src/io/estrado/Pipeline.groovy @@ -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