ci: refs#6706 Jenkinsfile fixes
gitea/salix/pipeline/head This commit looks good Details

This commit is contained in:
Juan Ferrer 2024-02-06 12:17:45 +01:00
parent 4c123247d8
commit 9c2ec2b8dd
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -29,7 +29,7 @@ node {
variable: '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}" }
}
@ -39,7 +39,7 @@ node {
variable: '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}" }
}
}