We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a64996 commit efcb6fdCopy full SHA for efcb6fd
Jenkinsfile.groovy
@@ -34,7 +34,7 @@ def fetchParamsFromGitLog() {
34
def idx = opt.indexOf('=');
35
if (idx > 0) {
36
def key = opt.substring(0, idx);
37
- def value = opt.substring(idx+1).replaceAll("^\"|\"$", "");
+ def value = opt.substring(idx+1).replaceAll('^\"|\"$', '');
38
myParams[key] = value;
39
println("Overwriting myParams.${key} with ${value}");
40
}
0 commit comments