test default

This commit is contained in:
Hyatt 2022-03-04 09:40:23 -06:00
parent d78296cbec
commit 6f8454182d
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

@ -9,12 +9,13 @@ def call(body) {
reposConfig[repo.key] = [ reposConfig[repo.key] = [
gitBranch: repo.value.gitBranch, gitBranch: repo.value.gitBranch,
gitRepo: repo.value.gitRepo, gitRepo: repo.value.gitRepo,
gitCreds: repo.value.gitCreds gitCreds: repo.value.gitCreds,
testValue: repo.value?.testValue ?: "default"
] ]
} }
reposConfig.each{repo -> reposConfig.each{repo ->
echo "Map Element ${repo.key}: ${repo.value.gitRepo}" echo "Map Element ${repo.key}: ${repo.value.gitRepo} = ${repo.value.testValue}"
} }
} }