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 0070a44 commit 779772dCopy full SHA for 779772d
Jenkinsfile.groovy
@@ -36,9 +36,15 @@ def fetchParamsFromGitLog() {
36
def key = opt.substring(0, idx);
37
def value = opt.substring(idx+1).replaceAll('^\"|\"$', '');
38
myParams[key] = value;
39
- println("Overwriting myParams.${key} with ${value}");
+ //println("Overwriting myParams.${key} with ${value}");
40
}
41
42
+
43
+ // Show params in log
44
+ for (entry in myParams) {
45
+ println("Using myParams.${entry.key} with ${entry.value}");
46
+ }
47
48
return myParams;
49
50
0 commit comments