refs #6915 test_master24_8 #2067
|
@ -29,7 +29,7 @@ node {
|
||||||
variable: 'PROPS_FILE')
|
variable: 'PROPS_FILE')
|
||||||
]) {
|
]) {
|
||||||
def props = readProperties file: PROPS_FILE
|
def props = readProperties file: PROPS_FILE
|
||||||
props.each {key, value -> env.put(key, value) }
|
props.each {key, value -> env."${key}" = value }
|
||||||
props.each {key, value -> echo "${key}: ${value}" }
|
props.each {key, value -> echo "${key}: ${value}" }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -39,7 +39,7 @@ node {
|
||||||
variable: 'BRANCH_PROPS_FILE')
|
variable: 'BRANCH_PROPS_FILE')
|
||||||
]) {
|
]) {
|
||||||
def props = readProperties file: BRANCH_PROPS_FILE
|
def props = readProperties file: BRANCH_PROPS_FILE
|
||||||
props.each {key, value -> env.put(key, value) }
|
props.each {key, value -> env."${key}" = value }
|
||||||
props.each {key, value -> echo "${key}: ${value}" }
|
props.each {key, value -> echo "${key}: ${value}" }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue