Skip to content

Commit efcb6fd

Browse files
committed
Remove value quotes
1 parent 9a64996 commit efcb6fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Jenkinsfile.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def fetchParamsFromGitLog() {
3434
def idx = opt.indexOf('=');
3535
if (idx > 0) {
3636
def key = opt.substring(0, idx);
37-
def value = opt.substring(idx+1).replaceAll("^\"|\"$", "");
37+
def value = opt.substring(idx+1).replaceAll('^\"|\"$', '');
3838
myParams[key] = value;
3939
println("Overwriting myParams.${key} with ${value}");
4040
}

0 commit comments

Comments
 (0)