can you define an already defined object?

This commit is contained in:
Hyatt 2022-03-04 10:07:46 -06:00
parent bd9fee8640
commit b5f2ed9727
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

@ -4,7 +4,8 @@ def call(body) {
body.delegate = config
body ()
/* def reposConfig = [:]
/*
def reposConfig = [:]
config.reposConfig.each{repo ->
reposConfig[repo.key] = [
gitBranch: repo.value.gitBranch,
@ -17,7 +18,8 @@ def call(body) {
Map reposConfig = config.reposConfig ?: [:]
reposConfig.each{repo ->
echo "Map Element ${repo.key}: ${repo.value.gitRepo} = ${repo.value.testValue}"
def name = repo.key
echo "Map Element ${name}: ${repo.value.gitRepo} = ${repo.value.testValue}"
}
}