mirror of
https://github.com/arangodb/kube-arangodb.git
synced 2024-12-14 11:57:37 +00:00
Remove value quotes
This commit is contained in:
parent
1ac163dd8e
commit
9a649964b4
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ def fetchParamsFromGitLog() {
|
|||
def idx = opt.indexOf('=');
|
||||
if (idx > 0) {
|
||||
def key = opt.substring(0, idx);
|
||||
def value = opt.substring(idx+1);
|
||||
def value = opt.substring(idx+1).replaceAll("^\"|\"$", "");
|
||||
myParams[key] = value;
|
||||
println("Overwriting myParams.${key} with ${value}");
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue